[svn-commits] rmudgett: branch 1.8 r323394 - /branches/1.8/main/netsock2.c
SVN commits to the Digium repositories
svn-commits at lists.digium.com
Tue Jun 14 12:21:46 CDT 2011
Author: rmudgett
Date: Tue Jun 14 12:21:39 2011
New Revision: 323394
URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=323394
Log:
Made ast_sockaddr_split_hostport() port warning msgs more meaningful.
Modified:
branches/1.8/main/netsock2.c
Modified: branches/1.8/main/netsock2.c
URL: http://svnview.digium.com/svn/asterisk/branches/1.8/main/netsock2.c?view=diff&rev=323394&r1=323393&r2=323394
==============================================================================
--- branches/1.8/main/netsock2.c (original)
+++ branches/1.8/main/netsock2.c Tue Jun 14 12:21:39 2011
@@ -121,8 +121,10 @@
int ast_sockaddr_split_hostport(char *str, char **host, char **port, int flags)
{
char *s = str;
-
- ast_debug(5, "Splitting '%s' gives...\n", str);
+ char *orig_str = str;/* Original string in case the port presence is incorrect. */
+ char *host_end = NULL;/* Delay terminating the host in case the port presence is incorrect. */
+
+ ast_debug(5, "Splitting '%s' into...\n", str);
*host = NULL;
*port = NULL;
if (*s == '[') {
@@ -130,7 +132,8 @@
for (; *s && *s != ']'; ++s) {
}
if (*s == ']') {
- *s++ = '\0';
+ host_end = s;
+ ++s;
}
if (*s == ':') {
*port = s + 1;
@@ -148,11 +151,10 @@
}
}
if (*port) {
- **port = '\0';
+ host_end = *port;
++*port;
}
}
- ast_debug(5, "...host '%s' and port '%s'.\n", *host, *port);
switch (flags & PARSE_PORT_MASK) {
case PARSE_PORT_IGNORE:
@@ -160,18 +162,23 @@
break;
case PARSE_PORT_REQUIRE:
if (*port == NULL) {
- ast_log(LOG_WARNING, "missing port\n");
+ ast_log(LOG_WARNING, "Port missing in %s\n", orig_str);
return 0;
}
break;
case PARSE_PORT_FORBID:
if (*port != NULL) {
- ast_log(LOG_WARNING, "port disallowed\n");
+ ast_log(LOG_WARNING, "Port disallowed in %s\n", orig_str);
return 0;
}
break;
}
+ /* Can terminate the host string now if needed. */
+ if (host_end) {
+ *host_end = '\0';
+ }
+ ast_debug(5, "...host '%s' and port '%s'.\n", *host, *port ? *port : "");
return 1;
}
More information about the svn-commits
mailing list