Home Tags Socket programming

Tag: socket programming

The next step to mastering ns-3

1
  In this, the second article on ns-3, the author touches upon Doxygen, Waf, socket programming, etc. Let us continue our journey to master ns-3. We...

The Socket API, Part 5: SCTP

15
This article on socket programming deals with the Stream Control Transmission Protocol (SCTP). Similar to TCP and UDP, SCTP provides some features of both. It...

The Socket API, Part 4: Datagrams

1
Let's try to develop server clients using UDP, the protocol behind some important services like DNS, NFS, etc. UDP, the User Datagram Protocol, is a...

The Socket API, Part 3: Concurrent Servers

4
In this part of the series, we will learn how to deal with multiple clients connected to the server. Welcome to another dose of socket...

Creating Your Own Server: The Socket API, Part 2

5
Earlier, we created a simple server and client program using the socket API. This time, we'll first start with a program, and then explain...