summaryrefslogtreecommitdiffstats
path: root/net/vino/files/patch-server_vino-http.c
diff options
context:
space:
mode:
authorkwm <kwm@df743ca5-7f9a-e211-a948-0013205c9059>2010-04-01 23:02:57 +0800
committerkwm <kwm@df743ca5-7f9a-e211-a948-0013205c9059>2010-04-01 23:02:57 +0800
commit53742cdbb07bd8739bc3a0f765760211268fc1c0 (patch)
tree39ddf5adbb87f982ebc06f53ee83fc606cd7b144 /net/vino/files/patch-server_vino-http.c
parentb056da02371b67a21cc4132e9d4d99b868b606d6 (diff)
downloadmarcuscom-ports-53742cdbb07bd8739bc3a0f765760211268fc1c0.tar.gz
marcuscom-ports-53742cdbb07bd8739bc3a0f765760211268fc1c0.tar.zst
marcuscom-ports-53742cdbb07bd8739bc3a0f765760211268fc1c0.zip
Update to 2.28.2.
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@13952 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'net/vino/files/patch-server_vino-http.c')
-rw-r--r--net/vino/files/patch-server_vino-http.c24
1 files changed, 24 insertions, 0 deletions
diff --git a/net/vino/files/patch-server_vino-http.c b/net/vino/files/patch-server_vino-http.c
new file mode 100644
index 000000000..d51f95885
--- /dev/null
+++ b/net/vino/files/patch-server_vino-http.c
@@ -0,0 +1,24 @@
+Index: server/vino-http.c
+diff -u -p server/vino-http.c.orig server/vino-http.c
+--- server/vino-http.c.orig Tue Feb 27 19:47:35 2007
++++ server/vino-http.c Sun Mar 25 20:56:41 2007
+@@ -595,6 +595,9 @@ vino_http_create_listening_socket (VinoH
+ {
+ #ifdef ENABLE_IPV6
+ struct sockaddr_in6 saddr_in6;
++#ifdef IPV6_V6ONLY
++ int off = 0;
++#endif
+ #endif
+ struct sockaddr_in saddr_in;
+ struct sockaddr *saddr;
+@@ -621,6 +624,9 @@ vino_http_create_listening_socket (VinoH
+
+ #ifdef ENABLE_IPV6
+ sock = socket (AF_INET6, SOCK_STREAM, 0);
++#ifdef IPV6_V6ONLY
++ setsockopt(sock, IPPROTO_IPV6, IPV6_V6ONLY, (void *)&off, sizeof(off));
++#endif
+
+ memset (&saddr_in6, 0, sizeof (struct sockaddr_in6));
+ saddr_in6.sin6_family = AF_INET6;