About 641,000 results
Open links in new tab
  1. Socket Programming in C - GeeksforGeeks

    Apr 23, 2025 · Socket programming is a way of connecting two nodes on a network to communicate with each other. One socket(node) listens on a particular port at an IP, while the …

  2. When creating a network application, the developer’s main task is to write the code for both the client and server programs. There are two sorts of network applications. One sort is an …

  3. Guide To Socket Programming in Python: Easy Examples

    To use Python's socket module, you must create a socket object using socket.socket(). Further, you must specify the socket type as socket.SOCK_STREAM. When you do this, you will be …

  4. TCP/IP Socket Programming in C and C++ (Client Server Program)

    This tutorial will help you to know about concept of TCP/IP Socket Programming in C and C++ along with client server program example.

  5. How to Create a Simple Client-Server Program Using C Sockets

    Apr 14, 2025 · In this tutorial, we’ll focus on TCP sockets, which provide reliable, connection-oriented communication. Sockets act as endpoints for communication between a client (which …

  6. SOCKET CREATION •mysocket1:socket descriptor (sockid) –integer •AF_INET: corresponds to IPv4 protocol as communication domain •SOCK_STREAM:TCP socket type •0:TCP network …

  7. What is a Socket? Where does Socket fit in the Network Stack? When does write() block? Questions? Thank you!

  8. A Beginners Guide to Socket Programming in C - DEV Community

    Apr 28, 2021 · Socket programming is a way of connecting two nodes on a network to communicate with each other. One socket (node) listens on a particular port at an IP, while …

  9. A stream is a sequence of characters that flow into or out of a process. An input stream is attached to some input source for the process, eg, keyboard or socket. An output stream is …

  10. socket() • int socket(int domain, int type, int protocol); • The domain specifies what type of socket we want—for this lecture, it will be one of PF_INET or PF_INET6 • The type for this lecture will …

Refresh