[asterisk-commits] mogorman: branch 1.4 r46822 -
/branches/1.4/channels/chan_gtalk.c
asterisk-commits at lists.digium.com
asterisk-commits at lists.digium.com
Wed Nov 1 13:35:42 MST 2006
Author: mogorman
Date: Wed Nov 1 14:35:41 2006
New Revision: 46822
URL: http://svn.digium.com/view/asterisk?rev=46822&view=rev
Log:
bind address support from bug 8164
Modified:
branches/1.4/channels/chan_gtalk.c
Modified: branches/1.4/channels/chan_gtalk.c
URL: http://svn.digium.com/view/asterisk/branches/1.4/channels/chan_gtalk.c?rev=46822&r1=46821&r2=46822&view=diff
==============================================================================
--- branches/1.4/channels/chan_gtalk.c (original)
+++ branches/1.4/channels/chan_gtalk.c Wed Nov 1 14:35:41 2006
@@ -1658,6 +1658,8 @@
struct ast_codec_pref prefs;
struct aji_client_container *clients;
struct gtalk_candidate *global_candidates = NULL;
+ struct hostent *hp;
+ struct ast_hostent ahp;
cfg = ast_config_load(GOOGLE_CONFIG);
if (!cfg)
@@ -1681,6 +1683,13 @@
ast_parse_allow_disallow(&prefs, &global_capability, var->value, 1);
else if (!strcasecmp(var->name, "context"))
ast_copy_string(context, var->value, sizeof(context));
+ else if (!strcasecmp(var->name, "bindaddr")) {
+ if (!(hp = ast_gethostbyname(var->value, &ahp))) {
+ ast_log(LOG_WARNING, "Invalid address: %s\n", var->value);
+ } else {
+ memcpy(&bindaddr.sin_addr, hp->h_addr, sizeof(bindaddr.sin_addr));
+ }
+ }
/* Idea to allow for custom candidates */
/*
else if (!strcasecmp(var->name, "candidate")) {
More information about the asterisk-commits
mailing list