Skip to content

Commit

Permalink
Integrate ipv6 patch from brendan at kublai.com should close #5
Browse files Browse the repository at this point in the history
  • Loading branch information
fharvey committed Jul 17, 2005
1 parent 0383bd7 commit af1715f
Show file tree
Hide file tree
Showing 18 changed files with 337 additions and 204 deletions.
15 changes: 0 additions & 15 deletions .cvsignore
@@ -1,15 +0,0 @@
Makefile
Makefile.in
aclocal.m4
autom4te.cache
config.cache
config.h
config.h.in
config.log
config.status
configure
depcomp
install-sh
missing
mkinstalldirs
stamp-h1
1 change: 1 addition & 0 deletions AUTHORS
Expand Up @@ -12,6 +12,7 @@ Gabor Nyeki - 005 initial support (IRCNET Bounce)
van Heusden - binding to local port
Ryan Tolboom - DCC Resume in capture mode.
Stephen Cope - Original Documentation
brendan at kublai.com - IPV6 Support
Tilman Sauerbeck - Patch
acklen, W8TVI and the folks on #dircproxy - User support

Expand Down
2 changes: 0 additions & 2 deletions conf/.cvsignore
@@ -1,2 +0,0 @@
Makefile
Makefile.in
2 changes: 2 additions & 0 deletions configure.ac
Expand Up @@ -53,6 +53,8 @@ AC_CHECK_FUNCS([alarm dup2 gethostbyaddr inet_ntoa memmove memset mkdir rmdir \
realloc select seteuid strcasecmp strchr strcspn strerror \
strncasecmp strrchr strspn strstr strtoul])

DIP_NET

# Check whether to debug things
AC_ARG_ENABLE([debug], AC_HELP_STRING([--enable-debug], [turn on debugging (default is NO)]),
[ if test "x${enable_debug}" = "xyes"; then
Expand Down
4 changes: 0 additions & 4 deletions contrib/.cvsignore
@@ -1,4 +0,0 @@
.deps
Makefile
Makefile.in
dircproxy-crypt
4 changes: 0 additions & 4 deletions crypt/.cvsignore
@@ -1,4 +0,0 @@
.deps
Makefile
Makefile.in
dircproxy-crypt
2 changes: 0 additions & 2 deletions doc/.cvsignore
@@ -1,2 +0,0 @@
Makefile
Makefile.in
4 changes: 0 additions & 4 deletions getopt/.cvsignore
@@ -1,4 +0,0 @@
.deps
Makefile
Makefile.in
libgetopt.a
4 changes: 0 additions & 4 deletions src/.cvsignore
@@ -1,4 +0,0 @@
.deps
Makefile
Makefile.in
dircproxy
4 changes: 2 additions & 2 deletions src/dcc_net.c
Expand Up @@ -125,7 +125,7 @@ static int _dccnet_listen(struct dccproxy *p, int *range, size_t range_sz,
int *port) {
int theport;

p->sendee_sock = net_socket();
p->sendee_sock = net_socket(AF_INET);
if (p->sendee_sock == -1)
return -1;

Expand Down Expand Up @@ -162,7 +162,7 @@ static int _dccnet_connect(struct dccproxy *p, struct in_addr addr, int port,
debug("Connecting to DCC Sender %s:%d", inet_ntoa(p->sender_addr.sin_addr),
ntohs(p->sender_addr.sin_port));

p->sender_sock = net_socket();
p->sender_sock = net_socket(AF_INET);
if (p->sender_sock == -1)
return -1;

Expand Down

0 comments on commit af1715f

Please sign in to comment.