Home | History | Annotate | Download | only in pending

Lines Matching defs:port

16     usage: tcpsvd [-hEv] [-c N] [-C N[:MSG]] [-b N] [-u User] [-l Name] IP Port Prog
17 usage: udpsvd [-hEv] [-c N] [-u User] [-l Name] IP Port Prog
19 Create TCP/UDP socket, bind to IP:PORT and listen for incoming connection.
23 PORT Port to listen on
224 unsigned long port;
227 port = strtoul(toys.optargs[1], &ptr, 10);
228 if (errno || port > 65535)
229 error_exit("Invalid port, Range is [0-65535]");
232 sprintf(toybuf, "%lu", port);
395 xexec(toys.optargs+2); //skip IP PORT