Tagged Questions
The setsockopt tag has no wiki summary.
7
votes
4answers
1k views
What was the motivation for adding the IPV6_V6ONLY flag?
In IPv6 networking, the IPV6_V6ONLY flag is used to ensure that a socket will only use IPv6, and in particular that IPv4-to-IPv6 mapping won't be used for that socket. On many OS's, the IPV6_V6ONLY ...
5
votes
3answers
1k views
Setting TCP receive window in C and working with tcpdump in Linux
I am running a Linux box running 2.6.9-55.ELsmp, x86_64.
I am trying to set the TCP receive window by using the setsockopt() function using C. I try the following:
rwnd = 1024;
setsockopt(sock, ...
2
votes
2answers
93 views
Effect of SO_SNDBUF
I am unable to make sense of how and why the following code segments work :
/* Now lets try to set the send buffer size to 5000 bytes */
size = 5000;
err = setsockopt(sockfd, SOL_SOCKET, ...
2
votes
4answers
541 views
Duplicate packets in Multicast Receiver Socket
There seems to be a bug in the following MulticastReceiver implementation.
On creating two instances for <224.0.25.46,13001> and <224.0.25.172,13001>, I get each packet twice in each stream. ...
2
votes
2answers
1k views
TCP option SO_LINGER (zero) - when it's required
I think I understand the formal meaning of the option. In some legacy code I'm handling now, the option is used. The customer complains about RST as response to FIN from its side on connection close ...
2
votes
3answers
3k views
What is the meaning of SO_REUSEADDR (setsockopt option) - Linux?
From Linux man page:
SO_REUSEADDR Specifies that the rules
used in validating addresses supplied
to bind() should allow reuse of local
addresses, if this is supported by the
protocol. ...
2
votes
1answer
340 views
Similar function to GetLastError in objective-C/C?
I'm doing some lovely socket programming in objective-C right now and part of my code is giving me an error (in the setsockopt method call). I was wondering if anyone knows of a similar function to ...
1
vote
1answer
273 views
Join multicast group on DatagramSocket?
I want to receive network data multicasted by another application on an AIR UDP socket (DatagramSocket).
In other programming languages, this is achieved by calling (Java) ...
1
vote
3answers
1k views
Error “No such device” in call setsockopt
everyone! I need help!
I have a code in which send multicast datagrams.
A critical piece of code:
uint32_t port;
int sockfd, err_ip;
const uint32_t sizebuff = 65535 - (20 + ...
1
vote
2answers
1k views
setsockopt (sys/socket.h)
The prototype for setsockopt is:
int setsockopt(int socket, int level, int option_name, const void *option_value, socklen_t option_len);
Are the following all correct ? Which are not ?
a.)
int ...
1
vote
2answers
919 views
See socket options on existing sockets created by other apps?
I'd like to test whether particular socket options have been set on an existing socket. Ie, pretty much everything you can see in:
#!/usr/bin/env python
'''See possible TCP socket options'''
import ...
1
vote
2answers
537 views
Is windows's setsockopt broken?
I want to be able to reuse some ports, and that's why I'm using setsockopt on my sockets, with the following code:
sock.setsockopt(socket.SOL_SOCKET,socket.SO_REUSEADDR,1)
However, this doesn't ...
0
votes
2answers
75 views
How do I set `SO_RCVTIMEO` on a socket in Perl?
If I try like this:
my $sock = IO::Socket::INET->new( … ) or die "no socket for you";
defined $sock->setsockopt(SOL_SOCKET, SO_RCVTIMEO, 30) or die "setsockopt: $!";
then ...
0
votes
1answer
150 views
setsockopt: Bad file descriptor in C++
I have the famous error "address already in use" because I have no check for the bind function.
Here is my code:
memset(&(this->serv_addr), 0, sizeof(this->serv_addr));
...
0
votes
1answer
252 views
TCP_NODELAY not found on Ubuntu
I am trying to disable the Nagle Algorithm with my TCP sockets on an Ubuntu Linux box by setting the TCP_NODELAY parameter. For some reason, this constant is not defined in <sys/types.h> or ...
0
votes
1answer
427 views
How do I re-bind a socket in MacOSX/Ubuntu? A second time
I have the following code:
if ( ( m_mainSocket = ::socket( PF_INET, SOCK_STREAM, IPPROTO_TCP ) ) < 0 )
{
throw Exception( __FILE__, __LINE__ ) << "Unable to create socket";
}
int on( 0 ...
0
votes
1answer
550 views
Set IP_HDRINCL to setsockopt function in win32
I'm fighting with raw sockets in Win32 and now I'm stuck, the soetsockopt funtion give me the 10022 error (invalid argument), but I think I pass the correct arguments... of course I'm wrong u_u'
...
0
votes
2answers
1k views
Extracting IP address from C sockets
Ok, I'm still new to using C sockets, but I was wondering if there is a way to extract the IP address adding running setsockopt? If you'll look at my code below, I have everything in my multicast ...