search for: ipproto_ipv6

Displaying 20 results from an estimated 23 matches for "ipproto_ipv6".

Did you mean: ipproto_ip
2004 May 09
2
[BUG] rsync 2.6.2
...ve found patch on this lists: --- rsync-2.6.2/socket.c.orig 2004-05-08 23:25:11.979473336 +0200 +++ rsync-2.6.2/socket.c 2004-05-08 23:27:13.255036648 +0200 @@ -379,8 +379,8 @@ #ifdef IPV6_V6ONLY if (resp->ai_family == AF_INET6) { - setsockopt(s, IPPROTO_IPV6, IPV6_V6ONLY, - (char *)&one, sizeof one); + if(setsockopt(s, IPPROTO_IPV6, IPV6_V6ONLY, (char *)&one, sizeof one) < 0) + continue; } #endif But it did not helped Is there any solution? What more...
2010 Nov 26
1
problem installing utorrent on 64bit linux
...cfg:fw_app_get_Enabled 0x18ae08, 0x7efa8c fixme:hnetcfg:fw_app_put_ProcessImageFileName 0x18ae08, L"Z:\\home\\steini\\downloads\\utorrent.exe" fixme:hnetcfg:fw_app_put_Name 0x18ae08, L"\00b5Torrent" fixme:hnetcfg:fw_apps_Add 0x18b328, 0x18ae08 fixme:winsock:WS_setsockopt Unknown IPPROTO_IPV6 optname 0x00000017 fixme:winsock:WS_setsockopt Unknown IPPROTO_IPV6 optname 0x00000017 err:winediag:WSASocketW Failed to create a socket of type SOCK_RAW, this requires special permissions. err:winediag:WSASocketW Failed to create a socket of type SOCK_RAW, this requires special permissions. err:ol...
2012 May 08
1
About bug 640857
Hi, Dear OpenSSH support, I'm writing to ask whether this bug is fixed in your openSSH 6.0. If no, do you have any plan? https://bugzilla.redhat.com/show_bug.cgi?id=640857 Regards, Carol
2010 Nov 20
2
utorrent mot workin on Centos
...fixme:hnetcfg:fw_app_get_Enabled 0x164958, 0x7efaa0 fixme:hnetcfg:fw_app_put_ProcessImageFileName 0x164958, L"Z:\\home\\Cleaner\\utorrent.exe" fixme:hnetcfg:fw_app_put_Name 0x164958, L"\00b5Torrent" fixme:hnetcfg:fw_apps_Add 0x164940, 0x164958 fixme:winsock:WS_setsockopt Unknown IPPROTO_IPV6 optname 0x00000017 fixme:winsock:WS_setsockopt Unknown IPPROTO_IPV6 optname 0x00000017 err:winediag:WSASocketW Failed to create a socket of type SOCK_RAW, this requires special permissions. err:winediag:WSASocketW Failed to create a socket of type SOCK_RAW, this requires special permissions. err:ol...
2016 Oct 05
3
Dev: new option to mark all tincd socket of a tincd process
I know i'm new to the list but i'd like to propose something for tincd daemon. I'd like to mark all sockets established by a tincd process with a mark passed as an argument in the command line. What could be the purpose of this new option? The goal of this option is to be able to have several tincd process running at the same time using the same port but using different ip. In
2013 Oct 25
2
[PATCH] support SO_REUSEPORT on new listeners (:reuseport)
...def new_ipv6_server(addr, port, opt) - opt.key?(:ipv6only) or return Kgio::TCPServer.new(addr, port) - defined?(IPV6_V6ONLY) or - abort "Socket::IPV6_V6ONLY not defined, upgrade Ruby and/or your OS" - sock = Socket.new(AF_INET6, SOCK_STREAM, 0) - sock.setsockopt(IPPROTO_IPV6, IPV6_V6ONLY, opt[:ipv6only] ? 1 : 0) + def new_tcp_server(addr, port, opt) + # n.b. we set FD_CLOEXEC in the workers + sock = Socket.new(opt[:ipv6] ? AF_INET6 : AF_INET, SOCK_STREAM, 0) + if opt.key?(:ipv6only) + defined?(IPV6_V6ONLY) or + abort "Socket::IPV6...
2007 Apr 24
3
[Bug 1309] X11 forwarding doesn't work with X11UseLocalhost=no
http://bugzilla.mindrot.org/show_bug.cgi?id=1309 Summary: X11 forwarding doesn't work with X11UseLocalhost=no Product: Portable OpenSSH Version: 4.3p2 Platform: All OS/Version: Linux Status: NEW Severity: normal Priority: P2 Component: sshd AssignedTo: bitbucket at mindrot.org
2002 May 02
0
problem with X11 forwarding and use_localhost on Linux (solution) (fwd)
...t;x11_use_localhost" case. --- openssh-3.1p1/channels.c Tue Mar 5 10:57:45 2002 +++ openssh-3.1p1-fix/channels.c Thu May 2 21:26:28 2002 @@ -2356,6 +2356,13 @@ continue; } } +#ifdef IPV6_V6ONLY + if (ai->ai_family == AF_INET6) { + int on = 1; + if (setsockopt(sock, IPPROTO_IPV6, IPV6_V6ONLY, &on, sizeof(on)) < 0) + debug("x11_create_display_inet: setsockopt(IPV6_V6ONLY) failed."); + } +#endif if (bind(sock, ai->ai_addr, ai->ai_addrlen) < 0) { debug("bind port %d: %.100s", port, strerror(errno)); close(sock); @@ -2374...
2010 Nov 24
0
FSX
...ull), 0x00000000, (null), (nil), 0x32f268) fixme:wbemprox:wbem_locator_ConnectServer 0x3ab4288, L"\\\\.\\root\\cimv2", (null), (null), (null), 0x00000000, (null), (nil), 0x32f268) fixme:dsalsa:IDsDriverBufferImpl_SetVolumePan (0x3ab7530,0x3ab7430): stub fixme:winsock:WS_setsockopt Unknown IPPROTO_IPV6 optname 0x00000017 fixme:winsock:WSAIoctl SIO_GET_EXTENSION_FUNCTION_POINTER: unimplemented TransmitFile
2012 Jun 11
1
tftp-hpa bug on aliased interface and recent kernels.
...NET || from->sa_family == AF_UNSPEC) setsockopt(s, IPPROTO_IP, IP_PKTINFO, &on, sizeof(on)); #endif #ifdef HAVE_IPV6 #ifdef IPV6_RECVPKTINFO - if (from->sa_family == AF_INET6) + if (from->sa_family == AF_INET6 || from->sa_family == AF_UNSPEC) setsockopt(s, IPPROTO_IPV6, IPV6_RECVPKTINFO, &on, sizeof(on)); #endif #endif
2010 Nov 13
3
[PATCH 1/4] Experimental IFF_ONE_QUEUE support for Linux
--- doc/tinc.conf.5.in | 3 +++ src/linux/device.c | 7 +++++++ 2 files changed, 10 insertions(+), 0 deletions(-) diff --git a/doc/tinc.conf.5.in b/doc/tinc.conf.5.in index 2bfd5fe..01f7f81 100644 --- a/doc/tinc.conf.5.in +++ b/doc/tinc.conf.5.in @@ -255,6 +255,9 @@ a lookup if your DNS server is not responding. This does not affect resolving hostnames to IP addresses from the host
2012 Jan 14
6
professional application Olympe5
...0x00000064,(nil),0x0001,0x00000000,0x79e5dc,(nil)): stub fixme:advapi:ReportEventW (0xcafe4242,0x0004,0x0000,0x00000064,(nil),0x0001,0x00000000,0x121538,(nil)): stub fixme:winsock:WSAIoctl WS_SIO_UDP_CONNRESET stub fixme:winsock:WSAIoctl WS_SIO_UDP_CONNRESET stub fixme:winsock:WS_setsockopt Unknown IPPROTO_IPV6 optname 0x00000013 fixme:winsock:WSAIoctl -> SIO_ADDRESS_LIST_CHANGE request: stub fixme:advapi:ReportEventA (0xcafe4242,0x0004,0x0000,0x00000064,(nil),0x0001,0x00000000,0x79e5dc,(nil)): stub fixme:advapi:ReportEventW (0xcafe4242,0x0004,0x0000,0x00000064,(nil),0x0001,0x00000000,0x121538,(nil)):...
2010 Aug 04
4
"listen=*, ::" broken?
Hi, the default: listen = *, :: should work and should open port 143 on IPv4 and IPv6. In my setup it looks broken: root at mail-archiv:/etc/dovecot# doveconf | grep ^listen listen = *, :: root at mail-archiv:/etc/dovecot# /etc/init.d/dovecot restart Restarting mail server: dovecotError: service(imap-login): listen(::, 143) failed: Address already in use Fatal: Failed to start listeners
2005 Jan 27
1
feedback on rsync-HEAD-20050125-1221GMT
Wayne, I have been using the rsync snapshot from 1/25 for the last few days and everything seems quite solid so far. I include below a few nit-picks in case you're looking for thing to tidy up. I'm also looking forward to hearing news about the --filter option. I'm thinking it is going to be very useful for backup purposes. What I would want to be able to do is, on a
2011 Nov 28
0
RFC: [PATCH] Add TCP congestion control and Diffserv options
...6 and + * ipv4, so we just hammer down on both and ignore the result + * And ipv6 demands an int for v. I didn't write the spec. + */ + if(diffserv) { + int v = (diffserv & 63) <<2; + setsockopt(s,IPPROTO_IP, IP_TOS, &v, sizeof(v)); + +#if defined(IPV6_TCLASS) + setsockopt(s,IPPROTO_IPV6, IPV6_TCLASS, &v, sizeof(v)); +#endif + } +} + /* Open a socket to a tcp remote host with the specified port. * * Based on code from Warren. Proxy support by Stephen Rothwell. @@ -275,6 +311,7 @@ int open_socket_out(char *host, int port, const char *bind_addr, alarm(connect_timeout);...
2009 Sep 02
0
Wine release 1.1.29
...llen (1): dinput: Add DISEQUENCE_COMPARE macro. Juan Lang (5): comctl32: Return the number of characters copied in WM_GETTEXT even if the buffer is too small. crypt32: Fix a test failure on Windows 7. quartz: Don't crash if sample allocation fails. include: Define IPPROTO_IPV6. ws2_32: Add a fixme for IPPROTO_IPV6. J?rg H?hle (1): wined3d: Delete meaningless UNIX GL driver version parsing. Louis Lenders (3): shdocvw.inf: Add default registry key "HKCU\Software\Microsoft\Internet Explorer\Settings. dbghelp: Add version resource. psapi:...
2011 Oct 18
0
FSX menus
...nnectServer 0x3f2e5f0, L"\\\\.\\root\\cimv2", (null), (null), (null), 0x00000000, (null), (nil), 0x32f268) fixme:wbemprox:wbem_locator_ConnectServer 0x3f194b0, L"\\\\.\\root\\cimv2", (null), (null), (null), 0x00000000, (null), (nil), 0x32f268) fixme:winsock:WS_setsockopt Unknown IPPROTO_IPV6 optname 0x00000017 fixme:winsock:WSAIoctl SIO_GET_EXTENSION_FUNCTION_POINTER: unimplemented TransmitFile fixme:imm:ImmDisableTextFrameService Stub fixme:ieframe:PersistStreamInit_InitNew (0xe66c850) fixme:ieframe:navigate_url Unsupported args (Flags 0x32e2a0:3; TargetFrameName 0x32e2b0:8) fixme:url...
2015 Aug 07
0
Wine release 1.7.49
...Create. Andrey Gusev (1): po: Update Ukrainian translation. Austin English (3): winedump: Avoid LPVOID when creating stub dll. winedump: Update README. vcomp110: Add dll. Bernhard ?belacker (1): include: Fix packing of digitalv.h. Bruno Jesus (1): ws2_32: Map IPPROTO_IPV6 protocol option. Charles Davis (1): ws2_32: Implement setting the keep-alive idle timeout and interval on Mac OS. Damjan Jovanovic (2): winex11: Only send WM_DROPFILES if there is no drop target. winex11: Use the correct drop effect for WM_DROPFILES. Daniel Lehman (1): ms...
2010 Apr 02
0
Wine release 1.1.42
...ed by WGL. wined3d: Split out offscreen rendering concerns from FindContext. wined3d: Control the onscreen depth stencil format in the swapchain. wined3d: Use FBOs when the onscreen depth stencil format isn't suitable. Stefan Leichter (2): ws2_32: Partly implement level IPPROTO_IPV6 of setsockopt. ws2_32: Partly implement level IPPROTO_IPV6 of getsockopt. S?bastien Ramage (1): user32: End scrollbar tracking if the mouse capture is lost. Vincent Povirk (37): oleaut32: Allow named args to be combined with positional args in fnInvoke. include: Add defini...
2010 Mar 22
3
Insert Symbol not working in MS Office 2007 Word
Whenever I insert a symbol in Word 2007, it crashes. It doesn't crash in PowerPoint 2007 or Excel 2007. This is because a dialog box comes up instead whilst in Word, it is more of a drop down menu. This is my counsel output: Code: wine winword.exe fixme:heap:HeapSetInformation 0x110000 1 (nil) 0 fixme:heap:HeapSetInformation 0x110000 1 (nil) 0 fixme:heap:HeapSetInformation 0x110000 1 (nil)