2010-11-03 11:34:14 +00:00
|
|
|
/**
|
|
|
|
* @file re_sipreg.h SIP Registration
|
|
|
|
*
|
|
|
|
* Copyright (C) 2010 Creytiv.com
|
|
|
|
*/
|
|
|
|
|
|
|
|
struct sipreg;
|
|
|
|
|
|
|
|
|
|
|
|
int sipreg_register(struct sipreg **regp, struct sip *sip, const char *reg_uri,
|
2018-01-08 08:55:26 +01:00
|
|
|
const char *to_uri, const char *from_name,
|
|
|
|
const char *from_uri, uint32_t expires,
|
2010-11-03 11:34:14 +00:00
|
|
|
const char *cuser, const char *routev[], uint32_t routec,
|
2011-02-25 09:17:21 +00:00
|
|
|
int regid, sip_auth_h *authh, void *aarg, bool aref,
|
2010-11-03 11:34:14 +00:00
|
|
|
sip_resp_h *resph, void *arg,
|
|
|
|
const char *params, const char *fmt, ...);
|
2017-06-30 09:51:31 +02:00
|
|
|
|
|
|
|
const struct sa *sipreg_laddr(const struct sipreg *reg);
|