Tagged Questions

The Berkeley sockets API comprises a library for developing applications in the C programming language that perform inter-process communication, most commonly for communications across a computer network.

learn more… | top users | synonyms

6
votes
4answers
1k views

About recv and the read buffer - C Berkeley Sockets

I am using berkeley sockets and TCP (SOCK_STREAM sockets). The process is: I connect to a remote address. I send a message to it. I receive a message from it. Imagine I am using the following ...
4
votes
2answers
219 views

Can someone give me a good explanation of 'send' behavior for non-blocking sockets?

I have read the documentation at least 10 times now and have also read some 10 or so code snippets and full programs where non-blocking sockets are used for sending data. The problem is that some of ...
4
votes
3answers
877 views

Dereferencing pointer does break strict anti-aliasing rules using Berkeley sockets

I've got code that looks something like this, where addr is a sockaddr*: struct sockaddr_in *sin = (struct sockaddr_in *) addr; const char *IP=inet_ntoa(sin -> sin_addr); I believe this is very ...
3
votes
1answer
63 views

Determining the Destination Timestamp of an (S)NTP packet?

I'm trying to create a simple SNTP client in C using the Berkeley sockets API, but I'm having trouble calculating the adjusted time from the response message. I got this from RFC2030. When the ...
3
votes
5answers
1k views

How to Avoid DOS Attack using Berkeley Sockets in C++

I'm working my way through UNIX Network Programming Volume 1 by Richard Stevens and attempting to write a TCP Echo Client that uses the Telnet protocol. I'm still in the early stages and attempting ...
2
votes
2answers
398 views

Berkley sockets shutdown function, how important?

as background I've got an embedded device that talks to a third party server over IP. The code in the third party server is unlikely to change. In a recent release I changed the ip disconnect function ...
1
vote
1answer
370 views

C/C++/C# Textbook or tutorial for TCP/IP and network programming (multiplatform)

I am looking for textbooks or tutorial (online, etc) for TCP/IP and network programming (multi-platform client/server programming). Does anyone have any suggestions? I'm specifically looking at C, ...
1
vote
1answer
242 views

difference between “address in use” with bind() in Windows and on Linux - errno=98

I have a small TCP server that listens on a port. While debugging it's common for me to CTRL-C the server in order to kill the process. On Windows I'm able to restart the service quickly and the ...
1
vote
2answers
347 views

Get remote address/IP - C Berkeley Sockets

Having a socket file descriptor connected (either by connect or by bind), type SOCK_STREAM, is it posible to get the remote address? I need to do that in a function, where I don't have any other data ...
1
vote
5answers
605 views

How to ignore your own broadcast udp packets

For the following I'm assuming one network card. I have a component of my program which is designed to let others in the subnet know of its existence. For this, I've implemented a solution where ...
1
vote
2answers
360 views

How to test Berkley socket (BSD) API?

I'd like to test the correctness and the completeness of an implementation of the BSP API. The test set has to be cross-compiled for an ARM sam7x.
0
votes
1answer
33 views

Tcp socket read always blocks

I have a client TCP socket that writes a few bytes every five seconds, the server echoes the bytes right back. Connect() and write() work just fine, and I have a callback at the IP layer that ...
0
votes
0answers
98 views

Portability of Berkeley Sockets

I'm working on a game engine. For this engine I need some really basic network functionality. Pretty much just "send this packet here", "listen for packets there". Ultimately it's first use will be ...
0
votes
2answers
116 views

what happens when I don't manage to call `recv` fast enough?

I want to account for a possible scenario where clients of my TCP/IP stream socket service send data to my service faster than it manages to move the data to its buffers (I am talking about ...
0
votes
3answers
842 views

Very Simple C++ TCP Echo Server

I am new to C++ network programming but have experience with Java sockets etc. I have been trying to write a simple TCP echo server in C++ but cannot really make any progress. I've tried looking at ...