aboutsummaryrefslogtreecommitdiffstats
path: root/src/sip.h
blob: 4ba0a0ee5549bebdd69352335ea730489e6469df (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#pragma once

#include <sofia-sip/su_wait.h>
#include <sofia-sip/url.h>
#include <sofia-sip/sip.h>
#include <sofia-sip/nua_tag.h>
#include <sofia-sip/su_glib.h>
#include <sofia-sip/nua.h>

struct app_config;
struct call;

struct sip_agent {
	struct app_config	*app;
	su_home_t		home;
	su_root_t		*root;

	nua_t			*nua;
};

void sip_agent_init(struct sip_agent *agent, struct app_config *app);
int sip_agent_start(struct sip_agent *agent);

int sip_create_remote_leg(struct sip_agent *agent, struct call *call, const char *local, const char *remote);