1
vote
3answers
52 views
Non-blocking socket on Windows doesn’t return after send() call
I'm hoping someone can explain a situation -- any situation -- in which a non-blocking Windows socket would not immediately return after using send() on it. On other platforms, my …
0
votes
1answer
73 views
Why would a blocking socket repeatedly return 0-length data?
I'm having a significant problem using a standard BSD-style socket in a C++ program. In the code below, I connect to a local web server, send a request, and simply create a loop wa …
0
votes
1answer
127 views
Sockets in MinGW
I was just trying to build netcat in MSYS using MinGW and realized that MinGW never really ported all of the BSD socket stuff to Windows (eg sys/socket.h). I know you can use Wind …
0
votes
2answers
29 views
how to determine value for ipv6mr_interface field of ipv6_mreq structure
I am trying to create a BSD socket to listen for messages from a specific IPv6 multicast address. I currently have no problem creating the socket listening on the correct address …
0
votes
1answer
77 views
How to support both IPv4 and IPv6 connections
Hello,
I'm currently working on a UDP socket application and I need to build in support so that IPV4 and IPV6 connections can send packets to a server.
I was hoping that someone …
0
votes
1answer
70 views
Testing for writability of BSD socket in Cocoa.
I have a BSD socket created with following code (it's in external library that I cannot change):
fcntl(sock, F_SETFL, O_NONBLOCK);
connect(sock, (struct sockaddr*) &sin, sizeo …
0
votes
4answers
79 views
getpeername() doesn’t work with connections to localhost
EDIT: Restating the problem, if I am listening to port 54321 and a local process listening to port 12345 connects to me, creating socket s, how do I actually find the port it is li …
0
votes
3answers
151 views
How to set different timeouts for each socket that select() monitors?
I am currently using the BSD sockets API. I would like to use the select() function to monitor (a) the listener socket which waits for new connections using accept(), and (b) all t …
2
votes
1answer
55 views
Wrapping BSD select() with JNA
I need to wrap a BSD-like C socket API to Java with JNA. It has basically the same functions as standard BSD socket API.
Wrapping select() is problematic because of the fd_set-str …
3
votes
3answers
813 views
UNIX nonblocking I/O: O_NONBLOCK vs. FIONBIO
In every example and discussion I run across in the context of BSD socket programming, it seems that the recommended way to set a file descriptor to nonblocking I/O mode is using t …
3
votes
8answers
564 views
Is it possible to unlisten on a socket ?
Is it possible to unlisten on a socket after you have called listen(fd, backlog)?
Edit: My mistake for not making myself clear. I'd like to be able to temporarily unlisten on the …
0
votes
1answer
1k views
Problem with creating sockets using CFSocket in Objective-C (iPhone app)
Ok, I have a problem with building a socket using Objective-C. If you'll take a look at my code below, through help with example code and other sources, I was able to build a compl …
1
vote
2answers
497 views
How to set TCP_NODELAY on BSD socket on Solaris?
I am trying to turn off Nagle's algorithm for a BSD socket using:
setsockopt(newSock, IPPROTO_TCP, TCP_NODELAY, (char*)&flag, sizeof flag);
but the compiler claims TCP_NODEL …
1
vote
1answer
88 views
BSD Socket issue: inet_ntop returning “0.0.0.0”
I'm trying to get the IP of the machine a socket I've bound is listening on. The port number printed works fine, but the address is "0.0.0.0". Here's the relevant code. res has bee …
2
votes
2answers
126 views
Joining 2 Sockets?
Is it possible to join two sockets?
For example, if a process is acting as a router of messages between 2 other processes at some point being able to step aside would save a bunch …
