summaryrefslogtreecommitdiff
path: root/net-im/libicq/files/patch-ad
diff options
context:
space:
mode:
authorcvs2svn <cvs2svn@FreeBSD.org>2000-03-17 02:18:05 +0000
committercvs2svn <cvs2svn@FreeBSD.org>2000-03-17 02:18:05 +0000
commit6c59170bca7b079bb699aa4fe6a5bf790e0dea6e (patch)
tree83a5fb38fba33a2f9e88f2df143b28d6ebc3b483 /net-im/libicq/files/patch-ad
parentRevert to rev. 1.4, which will restore some bugs in the previous version (diff)
This commit was manufactured by cvs2svn to create tag 'RELEASE_4_0_0'.release/4.0.0
Diffstat (limited to 'net-im/libicq/files/patch-ad')
-rw-r--r--net-im/libicq/files/patch-ad50
1 files changed, 0 insertions, 50 deletions
diff --git a/net-im/libicq/files/patch-ad b/net-im/libicq/files/patch-ad
deleted file mode 100644
index ba3b41a090d2..000000000000
--- a/net-im/libicq/files/patch-ad
+++ /dev/null
@@ -1,50 +0,0 @@
---- src/send.c.orig Thu Nov 11 17:16:26 1999
-+++ src/send.c Thu Nov 11 17:18:50 1999
-@@ -139,6 +139,17 @@
- fprintf(stderr, "\nSocket creation failed.");
- exit(1);
- }
-+
-+#ifdef IP_PORTRANGE
-+ {
-+ int i=IP_PORTRANGE_HIGH;
-+ if (setsockopt(sok, IPPROTO_IP, IP_PORTRANGE, &i, sizeof(i))<0)
-+ {
-+ fprintf(stderr, "\nSocket range selection failed.");
-+ exit(1);
-+ }
-+ }
-+#endif
-
- if(Verbose & ICQ_VERB_INFO)
- printf("\nSocket created. Attempting to connect..." );
-@@ -170,6 +181,12 @@
- bzero(&(sin.sin_zero), 8);
-
- tcp_sok = socket(AF_INET, SOCK_STREAM, 0);
-+#if IP_PORTRANGE
-+ {
-+ int i=IP_PORTRANGE_HIGH;
-+ setsockopt(tcp_sok, IPPROTO_IP, IP_PORTRANGE, &i, sizeof(i));
-+ }
-+#endif
- setsockopt(tcp_sok, SOL_SOCKET, SO_REUSEADDR, &retval, 4);
- set_nonblock(tcp_sok);
- retval = bind(tcp_sok, (struct sockaddr*)&sin, sizeof(sin));
---- src/tcp.c.orig Thu Nov 11 17:20:01 1999
-+++ src/tcp.c Thu Nov 11 17:20:02 1999
-@@ -608,6 +608,14 @@
- sock = socket(AF_INET, SOCK_STREAM, 0);
- if(sock == -1) return -1;
-
-+#ifdef IP_PORTRANGE
-+ {
-+ int i=IP_PORTRANGE_HIGH;
-+ if (setsockopt(sock, IPPROTO_IP, IP_PORTRANGE, &i, sizeof(i))<0)
-+ return -1;
-+ }
-+#endif
-+
- set_nonblock(sock);
-
- if((bind(sock, (struct sockaddr*)&local, sizeof(struct sockaddr))) == -1)