From 55d4339c6c9ca63ade086291734d3aa62eb21a5c Mon Sep 17 00:00:00 2001 From: Brian West Date: Sun, 4 Mar 2007 01:53:49 +0000 Subject: [PATCH] update comments git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@4445 d0543943-73ff-0310-b7d9-9358b9ac24b2 --- src/switch_utils.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/switch_utils.c b/src/switch_utils.c index b59db7e216..ffa11cebb5 100644 --- a/src/switch_utils.c +++ b/src/switch_utils.c @@ -376,8 +376,9 @@ SWITCH_DECLARE(apr_status_t) switch_socket_recvfrom(apr_sockaddr_t *from, apr_so if ((r = apr_socket_recvfrom(from, sock, flags, buf, len)) == APR_SUCCESS) { from->port = ntohs(from->sa.sin.sin_port); - //from->ipaddr_ptr = &(from->sa.sin.sin_addr); - //from->ipaddr_ptr = inet_ntoa(from->sa.sin.sin_addr); + /* from->ipaddr_ptr = &(from->sa.sin.sin_addr); + * from->ipaddr_ptr = inet_ntoa(from->sa.sin.sin_addr); + */ } return r; @@ -647,7 +648,7 @@ SWITCH_DECLARE(char *) switch_url_decode(char *s) #ifdef WIN32 -//this forces certain symbols to not be optimized out of the dll +/* this forces certain symbols to not be optimized out of the dll */ void include_me(void) { apr_socket_shutdown(NULL, 0);