Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

12
votes
2answers
180 views

N*(connect + send + close) vs (Nagle disable + connect + N*send + close) , N > 1

I'm new to socket programming (as you already figure out by my silly question), but keeping my shame aside, I'm writing a program using TCP posix. My constrain is the following: The message to be sent ...
12
votes
3answers
17k 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 the flag to fcntl(), ...
11
votes
4answers
4k views

PostgreSQL UNIX domain sockets vs TCP sockets

I wonder if the UNIX domain socket connections with postgresql are faster then tcp connections from localhost in high concurrency rate and if it does, by how much?
10
votes
4answers
4k views

How to support both IPv4 and IPv6 connections

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 could help me out and point ...
9
votes
5answers
2k views

When zeroing a struct such as sockaddr_in, sockaddr_in6 and addrinfo before use, which is correct: memset, an initializer or either?

Whenever I look at real code or example socket code in books, man pages and websites, I almost always see something like: struct sockaddr_in foo; memset(&foo, 0, sizeof foo); /* or bzero(), ...
9
votes
4answers
8k views

socket listen backlog parameter, how to determine this value?

How should I determine what to use for a listening socket's backlog parameter? Is it a problem to simply specify a very large number?
8
votes
2answers
2k views

How to signal select() to return immediately?

I have a worker thread that is listening to a TCP socket for incoming traffic, and buffering the received data for the main thread to access (let's call this socket A). However, the worker thread also ...
7
votes
3answers
377 views

Why is it assumed that send may return with less than requested data transmitted on a blocking socket?

The standard method to send data on a stream socket has always been to call send with a chunk of data to write, check the return value to see if all data was sent and then keep calling send again ...
7
votes
13answers
10k views

How do I create RAW TCP/IP packets in C++?

I'm a beginning C++ programmer / network admin, but I figure I can learn how to do this if someone points me in the right direction. Most of the tutorials are demonstrated using old code that no ...
5
votes
2answers
1k views

What is the difference between POSIX sockets and BSD sockets?

Could someone please explain the differences between POSIX sockets and BSD sockets?
5
votes
9answers
2k views

Can the server use the same socket to send the response to the client? how?

I am using Berkeley sockets (both: Internet domain and Unix domain) and I was wondering if the server can use the same sockets for reading the request and writing a response to the client. Or should ...
5
votes
2answers
288 views

Weird HTTP problem/mistake with Lisp

I'm attempting to learn a little more about handling sockets and network connections in SBCL; so I wrote a simple wrapper for HTTP. Thus far, it merely makes a stream and performs a request to ...
5
votes
2answers
998 views

Mixing File Handles and Sockets in Winsock

I'm porting some code from BSD sockets to Winsock, and I'm not sure how to handle the case below. My original application runs a select on both stdin and the network socket: FD_SET(sock, &fd); ...
5
votes
4answers
867 views

Lower than low level common bsd sockets

How do you do low low level sockets in C, example: actually sending a SYN.
4
votes
3answers
317 views

host to network double?

I'd like to send some double precision floating point numbers over the network. (standard C, standard sockets) There is no htond or ntohd to convert the data to and from network byte order. What ...
4
votes
4answers
420 views

Blocking sockets: when, exactly, does “send()” return?

When, exactly, does the BSD socket send() function return to the caller? In non-blocking mode, it should return immediately, correct? As for blocking mode, the man page says: When the message ...
4
votes
10answers
2k 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 socket. Calling ...
3
votes
2answers
403 views

Type of socket address from recvfrom() with AF_PACKET / PF_PACKET

On two PC, I am opening an AF_PACKET / PF_PACKET socket, raw protocol. sock = socket(AF_PACKET, SOCK_RAW, htons(PROTO_BULK)) (edit: PROTO_BULK is a dummy type, created by myself for this test. ...
3
votes
2answers
140 views

When sending a UDP packet, how do you get back the system-assigned outgoing port? (BSD C sockets)

When sending a UDP packet, how do you get back the system-assigned outgoing port? After sending the packet below, i need to immediately bind to and listen on whichever random port it chose for me, to ...
3
votes
2answers
2k views

when is IPPROTO_UDP required?

When is IPPROTO_UDP required? Is there ever a case where UDP is not the default protocol for SOCK_DGRAM? (real cases, not hypothetical "it might be", please") i.e., what are the situations where the ...
3
votes
1answer
230 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-structure required in ...
3
votes
2answers
4k 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_NODELAY hasn't been seen ...
3
votes
1answer
457 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 been passed to ...
3
votes
1answer
11k 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 complete socket I ...
2
votes
3answers
183 views

How to uniquely identify a socket with Node.js

I am just starting up with node.js , in the past i have done most of my coding part in C++ and PHP sockets() so node.js is something extremely new to me. In c++ to identify a socket we could have ...
2
votes
2answers
288 views

Linux TCP server: reading client's IP address before accepting connection

Related: C++ Winsock API how to get connecting client IP before accepting the connection? Hi, when you are running a TCP server (written in C, using the Berkeley Socket API) is it possible to ...
2
votes
2answers
216 views

Should I listen for IPv6 connections on a separate port than IPv4?

I have a program that listens for connections and handles them. I am aware that many networking stacks support accepting IPv4 and IPv6 connections over the same socket/port, but I've also heard that ...
2
votes
1answer
286 views

Is accept() thread-safe?

I'm currently writing a simple webserver in C for a course I'm doing. One requirement is for us to implement a thread pool to handle connections using pthreads. I know how I would go about doing this ...
2
votes
3answers
3k views

iPhone Objective-C socket communication with Socket.IO

I’m developing some sort of massive multiplayer board-game. My solution is node.js socket.io on server. I need solution for implementation some sort of objective-c socket which would communicate with ...
2
votes
1answer
135 views

Python multiprocessing with unrelated processes

I have many processes that are spawned separately, not from parent to child. The processes need to send a message to specific processes. The receiving processes address (pid) can be stored in a ...
2
votes
2answers
187 views

How to know when the socket has finished reading

I know little about sockets but so far I haven't had much of a problem. I'm actually stuck on how to know when the other side finished sending msgs. What I have so far is a while loop on the server ...
2
votes
6answers
477 views

What client-side situations need bind()?

I'm learning C socket programming. When would you use bind() on the client-side? What types of program will need it and why? Where can I find an example?
2
votes
5answers
249 views

Buffering data from sockets?

I am trying to make a simple HTTP server that would be able to parse client requests and send responses back. Now I have a problem. I have to read and handle one line at a time in the request, and I ...
2
votes
2answers
170 views

What should I use as a buffer in C++ for receiving data from network sockets?

I'm using sockets with C++. The program simply requests an HTTP page, reads it into a buffer buf[512], and then displays the buffer. However pages can contain more data than the buffer, so it will cut ...
2
votes
2answers
420 views

Can't create socket on Windows

I have quite an embarrassing problem. The following code simply will not create a socket on Windows; it fails and displays the error message. Could anyone briefly explain why this might be? I'm ...
2
votes
3answers
2k views

How to tunnel TCP over reliable UDP?

Assume I have a reliable UDP library, and want to tunnel arbitrary TCP connections over it. This is my current approach to doing so, but I feel that it may not be very efficient. Any suggestions are ...
2
votes
2answers
234 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 of socket IO. This ...
1
vote
2answers
73 views

How can I explicitly wait for a TCP ACK before proceeding?

Is there a way to get send() to wait until all the data that has been sent has been ACK-ed (or return -1 if the timeout for an ACK has been reached), or is there some other mechanism to wait for the ...
1
vote
1answer
137 views

How to know whether any process is bound to a Unix domain socket?

I'm writing a Unix domain socket server for Linux. A peculiarity of Unix domain sockets I quickly found out is that, while creating a listening Unix socket creates the matching filesystem entry, ...
1
vote
3answers
100 views

TCP sockets over wlan

I have a project that uses TCP sockets to communicate between a server and one client. As of now I have been doing this on one computer so I have just used local address of "127.0.0.1" for the address ...
1
vote
2answers
153 views

BSD Sockets Invalid Argument at connection

I keep getting an invalid argument error when I try to connect the client to the server. A couple threads online said this can happen when addrlen is not right, but I tried changing it to a literal ...
1
vote
4answers
128 views

How to determine if a user's router/ISP doesn't support IPv6 connections?

I'm using BSD sockets, and while I imagine it's easy to determine if a user's OS supports IPv6 (by trying to make a socket with AF_INET6), I'm not sure how to programmatically determine if their ...
1
vote
1answer
145 views

why splice() performs so bad on my system?

I want to test the performance of the splice() syscall. I compare it with the traditional read/write. /* wr.cpp * it use read/write */ #include <sys/types.h> #include <sys/stat.h> ...
1
vote
1answer
145 views

read and EAGAIN

I am using non-blocking client socket to read data from. Sometimes read returns EAGAIN. What is the proper way to handle it? At the moment my code retries immediately forever. Little worried ...
1
vote
1answer
287 views

reconnect a disconnected client socket

Is it possible to reconnect an already disconnected socket without having to create a new socket FD? Example: int s = socket(); connect(s,...); .... socket disconnects .... connect(s,...); ...
1
vote
2answers
95 views

how to start tcp session by connecting to a server [closed]

i am new to socket programming and i just started to develop a client application. At my connection to server, it assigns a session id to my client.But i dont know how to remain connected to that ...
1
vote
1answer
439 views

How to set keepalive option for induvidual socket in VxWorks

Is there any way to set keepalive for induvidual socket descriptor in vxworks? I read in some documents that "SOL_TCP" option in setsockopt function will do such favors in linux. Is such facility ...
1
vote
4answers
664 views

Is broadcasting via TCP possible?

I'm writing a server/client system in C, which uses BSD Sockets under a TCP connection. The server is multi-threaded, with each connection running in its own receptor. Each client does a good job ...
1
vote
1answer
133 views

client side on MAC OS X gets empty responses (using BSD sockets and Cocoa's NSFileHandle)

I'm connecting a linux machine (acting as server) and a Mac machine (as the client) using bsd sockets. Because of Cocoa's improve I'm setting bsd sockets the usual way but then encapsulating it on a ...
1
vote
3answers
258 views

Network Programming Low Level or Class Abstraction?

I see a lot of questions on the topic of network programming. Despite all the questions and answers I just do not know which way is best to start. Is it better to start from the lowest level, or ...

1 2