*** empty log message ***

This commit is contained in:
Thomas Ries
2009-02-22 18:14:12 +00:00
parent 2f86ddfe43
commit 54a62c5715
3 changed files with 24 additions and 16 deletions

View File

@@ -368,8 +368,8 @@ AC_CHECK_TYPE(socklen_t,
[#ifdef HAVE_NETDB_H]
[#include <netdb.h>]
[#endif]
[#ifdef HAVE_NETINET_IN_H]
[#include <netinet/in.h>]
[#ifdef HAVE_SYS_SOCKET_H]
[#include <sys/socket.h>]
[#endif]
]
)

View File

@@ -22,20 +22,6 @@
AM_CFLAGS = -Wall -D_GNU_SOURCE \
-DBUILDSTR="\"`cat .buildno`\""
#
# Siproxd itself
#
sbin_PROGRAMS = siproxd
siproxd_LDFLAGS=-export-dynamic
siproxd_LDADD = $(LIBLTDL) $(DLOPENPLUGINS)
siproxd_SOURCES = siproxd.c proxy.c register.c sock.c utils.c \
sip_utils.c sip_layer.c log.c readconf.c rtpproxy.c \
rtpproxy_relay.c accessctl.c route_processing.c \
security.c auth.c fwapi.c resolve.c \
dejitter.c plugins.c
# addrcache.c
#
# Plugin modules, installed in "pkglib" directory ($prefix/lib/siproxd/)
#
@@ -66,6 +52,22 @@ plugin_fix_bogus_via_la_SOURCES = plugin_fix_bogus_via.c
plugin_fix_bogus_via_la_LDFLAGS = -module -avoid-version -shrext '.so'
#
# Siproxd itself
# (references DLOPENPLUGINS defined above - must be placed afterwards
# else Cygwin goes beserk when building...)
#
sbin_PROGRAMS = siproxd
siproxd_LDFLAGS=-export-dynamic
siproxd_LDADD = $(LIBLTDL) $(DLOPENPLUGINS)
siproxd_SOURCES = siproxd.c proxy.c register.c sock.c utils.c \
sip_utils.c sip_layer.c log.c readconf.c rtpproxy.c \
rtpproxy_relay.c accessctl.c route_processing.c \
security.c auth.c fwapi.c resolve.c \
dejitter.c plugins.c
# addrcache.c
#
# an example for a custom firewall control module
# that can be linked into siproxd (--with-custom-fwmodule)

View File

@@ -18,6 +18,10 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#include "config.h"
#ifndef _CYGWIN
#include <arpa/inet.h>
#include <netinet/in.h>
@@ -242,3 +246,5 @@ ERROR("_resolve: NAPTR lookup not yet supported.");
dname[dnamelen-1]='\0';
return 0;
}
#endif /*_CYGWIN */