summaryrefslogtreecommitdiff
path: root/res
diff options
context:
space:
mode:
authorMark Michelson <mmichelson@digium.com>2013-07-31 14:45:58 +0000
committerMark Michelson <mmichelson@digium.com>2013-07-31 14:45:58 +0000
commitd27d0d0761d5cf7f10ccba69bfdc14fc05b2004f (patch)
treefbd94755621a0e566e149bf1cbb079f66f1f4cc5 /res
parent2feb049ba2a55a611e0f1c0981c27a0e17955a85 (diff)
Remove "constant" endpoint identifier.
This was created as a debugging tool before proper endpoint identifiers were created. Using it now can actually lead to harmful results. git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@395868 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'res')
-rw-r--r--res/res_pjsip_endpoint_identifier_constant.c68
1 files changed, 0 insertions, 68 deletions
diff --git a/res/res_pjsip_endpoint_identifier_constant.c b/res/res_pjsip_endpoint_identifier_constant.c
deleted file mode 100644
index 18d57b0b7..000000000
--- a/res/res_pjsip_endpoint_identifier_constant.c
+++ /dev/null
@@ -1,68 +0,0 @@
-/*
- * 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>
- <depend>res_pjsip</depend>
- <defaultenabled>no</defaultenabled>
- <support_level>core</support_level>
- ***/
-
-#include "asterisk.h"
-
-#include <pjsip.h>
-
-#include "asterisk/res_pjsip.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->media.prefs, endpoint->media.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, "PJSIP Constant Endpoint Identifier",
- .load = load_module,
- .unload = unload_module,
- .load_pri = AST_MODPRI_APP_DEPEND,
- );