]> git.proxmox.com Git - mirror_edk2.git/blame_incremental - StdLib/BsdSocketLib/listen.c
ArmVirtualizationPkg: PlatformIntelBdsLib: fix multiconsole setup
[mirror_edk2.git] / StdLib / BsdSocketLib / listen.c
... / ...
CommitLineData
1/** @file\r
2 Implement the listen API.\r
3\r
4 Copyright (c) 2011 - 2014, Intel Corporation. All rights reserved.<BR>\r
5 This program and the accompanying materials are licensed and made available under\r
6 the terms and conditions of the BSD License that accompanies this distribution.\r
7 The full text of the license may be found at\r
8 http://opensource.org/licenses/bsd-license.php.\r
9\r
10 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
11 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
12**/\r
13#include <SocketInternals.h>\r
14\r
15\r
16/** Establish the known port to listen for network connections.\r
17\r
18 The listen routine places the port into a state that enables connection\r
19 attempts. Connections are placed into FIFO order in a queue to be serviced\r
20 by the application. The application calls the ::accept routine to remove\r
21 the next connection from the queue and get the associated socket.\r
22\r
23 The\r
24 <a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/listen.html">POSIX</a>\r
25 documentation is available online.\r
26\r
27 @param [in] s Socket file descriptor returned from ::socket.\r
28\r
29 @param [in] backlog backlog specifies the maximum FIFO depth for the connections\r
30 waiting for the application to call ::accept. Connection attempts\r
31 received while the queue is full are refused.\r
32\r
33 @return This routine returns zero (0) if successful or -1 when an error occurs.\r
34 In the case of an error, ::errno contains more details.\r
35 **/\r
36int\r
37listen (\r
38 IN int s,\r
39 IN int backlog\r
40 )\r
41{\r
42 int ListenStatus;\r
43 EFI_SOCKET_PROTOCOL * pSocketProtocol;\r
44\r
45 // Locate the context for this socket\r
46 pSocketProtocol = BslFdToSocketProtocol ( s, NULL, &errno );\r
47 if ( NULL != pSocketProtocol ) {\r
48 // Enable connections on the known port\r
49 (void) pSocketProtocol->pfnListen ( pSocketProtocol,\r
50 backlog,\r
51 &errno );\r
52 }\r
53 // Return the operation stauts\r
54 ListenStatus = ( 0 == errno ) ? 0 : -1;\r
55 return ListenStatus;\r
56}\r