About 120,000 results
Open links in new tab
  1. socket function (winsock2.h) - Win32 apps | Microsoft Learn

    Oct 13, 2021 · The socket function causes a socket descriptor and any related resources to be allocated and bound to a specific transport-service provider. Winsock will utilize the first …

  2. socket (2) — Linux manual page - man7.org

    socket () creates an endpoint for communication and returns a file descriptor that refers to that endpoint. The file descriptor returned by a successful call will be the lowest-numbered file …

  3. socket — Low-level networking interface — Python 3.14.2 …

    The Python interface is a straightforward transliteration of the Unix system call and library interface for sockets to Python’s object-oriented style: the socket() function returns a socket …

  4. Socket Programming in C - GeeksforGeeks

    Aug 7, 2025 · The client-server model refers to the architecture used in socket programming, where a client and a server to interact with each other to exchange information or services. …

  5. Unix Socket - Core Functions - Online Tutorials Library

    This chapter describes the core socket functions required to write a complete TCP client and server.

  6. socket - Open Group

    The socket () function shall create an unbound socket in a communications domain, and return a file descriptor that can be used in later function calls that operate on sockets.

  7. Socket Function - an overview | ScienceDirect Topics

    Socket functions are fundamental programming interfaces that serve as communication endpoints for network communication, enabling data exchange between client and server applications …

  8. Sockets (The GNU C Library)

    Sockets are the primary means of communicating with other machines; telnet, rlogin, ftp, talk and the other familiar network programs use sockets. Not all operating systems support sockets.

  9. socket (7): socket interface - Linux man page

    These functions are used by the user process to send or receive packets and to do other socket operations. For more information see their respective manual pages.

  10. Networking and Socket Programming

    In this lecture, we will discuss the socket API and support for network communications between Internet hosts. Socket programming is the key API for programming distributed applications on …