The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
38 views

BSD sockets setsockopt option to avoid waiting for acknowledge before next send

I am trying to send some KBytes of data trough Ethernet with a proprietary simple raw TCP protocol. Standard Windows configuration requires two (2) packets received before returning an acknowledge ...
0
votes
0answers
52 views

setsockopt() returns EBUSY

I have just succesfully opened a RAW socket and I am trying to export Kernel TX and RX rings with the function below. However, setsockopt() returns EBUSY (Device or resource busy) when trying to tell ...
1
vote
2answers
168 views

“setsockopt SO_SNDBUF failed in tcp_connect()”

I have a problem in my C client, where I implemented a client gsoap program to invoke a web service. Everything works fine on a Windows PC, but when I publish my code on a linux-based POS device, I ...
0
votes
1answer
68 views

SO_BINDTODEVICE Failing for virtual interface

I am trying to run PTPDV2 (precision timing protocol) server which binds on interface for setting up multicasting. I have a following virtual interface eth1:0 Link encap:Ethernet HWaddr ...
0
votes
0answers
169 views

Can ios CFSocket support to change tcp mss by setsockopt(TCP_MAXSEG)?

Can ios CFSocket support to change tcp mss by setsockopt(tcp_maxseg) ? I have tried to change MSS value by this way, but it looks like there is no effect. My code likes as below: static const int ...
0
votes
1answer
232 views

increase tcp receive window on linux

Similar to Setting TCP receive window in C and working with tcpdump in Linux and Why changing value of SO_RCVBUF doesn't work?, I'm a unable to increase the tcp receive window greater than 5888 on ...
0
votes
2answers
128 views

Can I set SO_RCVBUF to 1 on a UDP socket

I have a system where a single-byte message is sent via a UDP socket from one process to another when something happens. On the receiving end, it matters not if this event has happened once or a ...
1
vote
1answer
55 views

“IP_TRANSPARENT” was not declared in this scope

I try to use IP_TRANSPARENT socket option. But I got "IP_TRANSPARENT" was not declared in this scope. If I directly use its code (19) in the code, I got binding error as : "invalid argument". Should I ...
2
votes
1answer
65 views

Replaying http traffic with original source address

I want to build a testbed including a client and a web server, where I can replay some logged http get requests to the web server. So I am planning to exactly simulating the actual traffic with ...
1
vote
2answers
175 views

what does blocking means in setsockopt parameter SO_RCVTIMEO

When i was taking a look at setsockopt from msdn link. i came across a parameter SO_RCVTIMEO, it description is "Sets the timeout, in milliseconds, for blocking receive calls." I thought the socket ...
0
votes
0answers
201 views

How to set TCP_NODELAY flag when loading URL with urllib2?

I am using urllib2 for loading web-page, my code is: httpRequest = urllib2.Request("http:/www....com") pageContent = urllib2.urlopen(httpRequest) pageContent.readline() How can I get hold of the ...
0
votes
0answers
208 views

IP_MULTICAST_TTL and windows7

My application is creating an UDP socket and setting some options. One of the option is IP_MULTICAST_TTL. When the application is running on windows 7, and I observe the traffic on the wire with ...
1
vote
2answers
369 views

How is it possible to have send timeout on a non blocking socket?

I have some problems understanding the working of sockets in Linux. setsockopt(sockfd, SOL_SOCKET, SO_SNDTIMEO, &timeout, sizeof(int)); write = write(sockfd, buf, len); In the above code as ...
0
votes
1answer
232 views

setsockopt error WSAEADDRNOTAVAIL

Source: WSADATA WSAData; SOCKET sock; if (WSAStartup(MAKEWORD(2,2), &WSAData)!=0) { printf("\nProblem with WSAStartup\n\n"); return FALSE; } if ((sock = ...
0
votes
0answers
107 views

setsockopt error protocol not available in iPod 2G A1288 with iOS version 4.2.1(8C148) compiled with sdk 5.0

I am using mDNSResponder in my project. It was OK when I built app with SDK 4.2 and install it in iPod with iOS 4.2.1. However, if I compile the source code with SDK 5.0, setsockopt function return ...
3
votes
1answer
341 views

getsockopt returns different IP_TOS value from the one set in setsockopt

I'm trying to use setsockopt to set IPTOS value to IPTOS_THROUGHPUT. The setsockopt call returned 0. However the getsockopt shows the IP_TOS value is set to 1, which is different from IPTOS_THROUGHPUT ...
2
votes
1answer
432 views

setsockopt on “accepted” fd on Linux

I have had a rather strange observation about behavior of setsockopt on Linux for SO_REUSEADDR. In one line: if I apply the sockopt to an fd returned by accept on a "listening socket" the socketoption ...
0
votes
0answers
159 views

Python Join Group with source IP

I wrote this piece of code but I am not able to modify it in order to use IGMPV3 and use the source feature of IGMPV3, how can I add a membership for a group on an interface for specified source ? ...
1
vote
1answer
378 views

SO_REUSEADDR with UDP sockets on Linux. Is it necessary?

My UDP socket is bind()ing to port 53 (DNS). Does UDP have a TIME_WAIT state or is using SO_REUSEADDR pointless on UDP sockets?
0
votes
1answer
241 views

read() with setsockopt() in C

I'm trying to write a server-client code and I'm stuck at a point. I want the client to read for a certain amount of time and timeout. I tried using setsockopt() with SO_RCVTIMEO specifying the time ...
3
votes
1answer
1k views

Invalid argument in sendto when using interface name to set IP_MULTICAST_IF

I am writing a small program that sends and receive multicast packets.I need to set the outgoing interface with its name (e.g. eth0) rather than its address. Therefore I have to use struct ip_mreqn ...
2
votes
1answer
275 views

How to Properly Set up a UDP Socket using UDP_CORK

I have created an echo server under UDP, and am working on a client that splits up a given file into packets and transfers it to a server, which then returns the packets to be reassembled by the ...
0
votes
0answers
949 views

linux joining multicast group setsockopt returns errno 19 device not found

I have set a UDP non-blocking socket. I am creating the socket, binding it, and joining a multicast group like this: int hopLimit = 1; int bAllowMultiple = 1; in_addr localAddr; localAddr.s_addr = 0; ...
0
votes
2answers
314 views

What is error 22 from setsockopt?

I have the following code that is returning an error number of 22. I can't find out anywhere what 22 refers to, can someone point out where I might find out? if (setsockopt(sock, IPPROTO_TCP, ...
1
vote
2answers
5k views

Why changing value of SO_RCVBUF doesn't work?

I'm making a program which create a RAW socket in order to read all traffic. Between the call of socket() and recvfrom() (last one is in a loop to get out all packets from buffer) I wait 5s. When I ...
1
vote
1answer
479 views

Is the tcp window size relevant to the SND_BUF or RCV_BUF of the tcp socket?

I want to know when I change the SND_BUF of a socket via setsockopt API, will the original window size of the TCP layer be changed accordingly?
-1
votes
2answers
613 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 ...
4
votes
2answers
2k 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, ...
0
votes
1answer
1k 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)); ...
1
vote
1answer
528 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) ...
2
votes
1answer
2k 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 ...
3
votes
5answers
1k 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. ...
14
votes
3answers
11k 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 ...
5
votes
3answers
8k 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
3answers
3k 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 + ...
10
votes
6answers
2k 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 ...
1
vote
1answer
4k 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 ...
8
votes
3answers
3k 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, ...
0
votes
1answer
788 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 ...
1
vote
3answers
2k 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 ...
2
votes
1answer
558 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 ...
0
votes
2answers
940 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
2k 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 ...
2
votes
2answers
869 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 ...