Operating systems, development tools, and professional services
for connected embedded systems
for connected embedded systems
![]() |
![]() |
![]() |
![]() |
Rlisten()
Listen for connections on a socket (via a SOCKS server)
Synopsis:
#include <sys/socket.h>
int Rlisten( int s,
int backlog );
Arguments:
- s
- The descriptor for the socket that you want to listen on. You can create a socket by calling socket().
- backlog
- The maximum length that the queue of pending connections may grow to.
Library:
libsocks
Use the -l socks option to qcc to link against this library.
Description:
The Rlisten() function is a cover function for listen() -- the difference is that Rlisten() does its job via a SOCKS server.
For more information about SOCKS and its libraries, see the appendix, SOCKS -- A Basic Firewall.
Returns:
- 0
- Success.
- -1
- An error occurred (errno is set).
Classification:
| Safety: | |
|---|---|
| Cancellation point | No |
| Interrupt handler | No |
| Signal handler | No |
| Thread | No |
See also:
listen() Raccept(), Rbind(), Rconnect(), Rgetsockname(), Rrcmd(), Rselect(), SOCKSinit()
![]() |
![]() |
![]() |
![]() |

![[Previous]](../prev.gif)
![[Contents]](../contents.gif)
![[Index]](../keyword_index.gif)
![[Next]](../next.gif)