summaryrefslogtreecommitdiff
path: root/res/res_sip_endpoint_identifier_constant.c
blob: e519a9ee8eec691f59474f19a0294330bcea8567 (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
/*
 * Asterisk -- An open source telephony toolkit.
 *
 * Copyright (C) 2013, Digium, Inc.
 *
 * Mark Michelson <mmichelson@digium.com>
 *
 * Includes code and algorithms from the Zapata library.
 *
 * See http://www.asterisk.org for more information about
 * the Asterisk project. Please do not directly contact
 * any of the maintainers of this project for assistance;
 * the project provides a web site, mailing lists and IRC
 * channels for your use.
 *
 * This program is free software, distributed under the terms of
 * the GNU General Public License Version 2. See the LICENSE file
 * at the top of the source tree.
 */

/*** MODULEINFO
	<depend>pjproject</depend>
	<defaultenabled>no</defaultenabled>
	<support_level>core</support_level>
 ***/

#include "asterisk.h"

#include <pjsip.h>

#include "asterisk/res_sip.h"
#include "asterisk/module.h"

static struct ast_sip_endpoint *constant_identify(pjsip_rx_data *rdata)
{
	/* This endpoint identifier always returns the same endpoint. It's used
	 * simply for testing. It allocates an endpoint from sorcery so default values
	 * do get applied.
	 */
	struct ast_sip_endpoint *endpoint = ast_sorcery_alloc(ast_sip_get_sorcery(), "endpoint", NULL);
	if (!endpoint) {
		return NULL;
	}
	ast_parse_allow_disallow(&endpoint->prefs, endpoint->codecs, "ulaw", 1);
	return endpoint;
}

static struct ast_sip_endpoint_identifier constant_identifier = {
	.identify_endpoint = constant_identify,
};

static int load_module(void)
{
	ast_sip_register_endpoint_identifier(&constant_identifier);
	return AST_MODULE_LOAD_SUCCESS;
}

static int unload_module(void)
{
	return 0;
}

AST_MODULE_INFO(ASTERISK_GPL_KEY, AST_MODFLAG_LOAD_ORDER, "SIP Constant Endpoint Identifier",
		.load = load_module,
		.unload = unload_module,
		.load_pri = AST_MODPRI_APP_DEPEND,
	       );