summaryrefslogtreecommitdiff
path: root/pjsip/src/pjsua/pjsua_reg.c
blob: 972791b1c42520d4c556375afd5554d18f9b9cfc (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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
/* $Id$ */
/* 
 * Copyright (C) 2003-2006 Benny Prijono <benny@prijono.org>
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA 
 */
#include "pjsua.h"


/*
 * pjsua_reg.c
 *
 * Client registration handler.
 */

#define THIS_FILE   "pjsua_reg.c"


/*
 * This callback is called by pjsip_regc when outgoing register
 * request has completed.
 */
static void regc_cb(struct pjsip_regc_cbparam *param)
{
    /*
     * Print registration status.
     */
    if (param->code < 0 || param->code >= 300) {
	PJ_LOG(2, (THIS_FILE, "SIP registration failed, status=%d (%s)", 
		   param->code, pjsip_get_status_text(param->code)->ptr));
	pjsua.regc = NULL;

    } else if (PJSIP_IS_STATUS_IN_CLASS(param->code, 200)) {
	PJ_LOG(3, (THIS_FILE, "SIP registration success, status=%d (%s), "
			      "will re-register in %d seconds", 
			      param->code,
			      pjsip_get_status_text(param->code)->ptr,
			      param->expiration));

    } else {
	PJ_LOG(4, (THIS_FILE, "SIP registration updated status=%d", param->code));
    }

    pjsua.regc_last_code = param->code;

    pjsua_ui_regc_on_state_changed(pjsua.regc_last_code);
}


/*
 * Update registration. If renew is false, then unregistration will be performed.
 */
void pjsua_regc_update(pj_bool_t renew)
{
    pj_status_t status;
    pjsip_tx_data *tdata;

    if (renew) {
	PJ_LOG(3,(THIS_FILE, "Performing SIP registration..."));
	status = pjsip_regc_register(pjsua.regc, 1, &tdata);
    } else {
	PJ_LOG(3,(THIS_FILE, "Performing SIP unregistration..."));
	status = pjsip_regc_unregister(pjsua.regc, &tdata);
    }

    if (status != PJ_SUCCESS) {
	pjsua_perror("Unable to create REGISTER request", status);
	return;
    }

    pjsip_regc_send( pjsua.regc, tdata );
}

/*
 * Initialize client registration.
 */
pj_status_t pjsua_regc_init(void)
{
    pj_status_t status;

    /* initialize SIP registration if registrar is configured */
    if (pjsua.registrar_uri.slen) {

	status = pjsip_regc_create( pjsua.endpt, NULL, &regc_cb, &pjsua.regc);

	if (status != PJ_SUCCESS) {
	    pjsua_perror("Unable to create client registration", status);
	    return status;
	}


	status = pjsip_regc_init( pjsua.regc, &pjsua.registrar_uri, 
				  &pjsua.local_uri, 
				  &pjsua.local_uri,
				  1, &pjsua.contact_uri, 
				  pjsua.reg_timeout);
	if (status != PJ_SUCCESS) {
	    pjsua_perror("Client registration initialization error", status);
	    return status;
	}

	pjsip_regc_set_credentials( pjsua.regc, pjsua.cred_count, 
				    pjsua.cred_info );

	pjsip_regc_set_route_set( pjsua.regc, &pjsua.route_set );
    }

    return PJ_SUCCESS;
}