Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

net::server::proto::tcp(3) [osx man page]

Net::Server::Proto::TCP(3)				User Contributed Perl Documentation				Net::Server::Proto::TCP(3)

NAME
Net::Server::Proto::TCP - Net::Server TCP protocol. SYNOPSIS
See Net::Server::Proto. DESCRIPTION
Protocol module for Net::Server. This module implements the SOCK_STREAM socket type under INET (also known as TCP). See Net::Server::Proto. PARAMETERS
There are no additional parameters that can be specified. See Net::Server for more information on reading arguments. INTERNAL METHODS
"object" Returns an object with parameters suitable for eventual creation of a IO::Socket::INET object listining on UDP. "log_connect" Called before binding the socket to provide useful information to the logs. "connect" Called when actually binding the port. Handles default parameters before calling parent method. "reconnect" Called instead of connect method during a server hup. "accept" Override of the parent class to make sure necessary parameters are passed down to client sockets. "poll_cb" Allow for psgi compatible interface during HTTP server. "read_until" Takes a regular expression, reads from the socket until the regular expression is matched. "hup_string" Returns a unique identifier that can be passed to the re-exec'ed process during HUP. "show" Basic dumper of properties stored in the glob. "AUTOLOAD" Handle accessor methods. LICENCE
Distributed under the same terms as Net::Server POD ERRORS
Hey! The above document had some coding errors, which are explained below: Around line 229: You forgot a '=back' before '=head1' perl v5.16.2 2012-05-29 Net::Server::Proto::TCP(3)

Check Out this Related Man Page

Net::Server::Proto::TCP(3pm)				User Contributed Perl Documentation			      Net::Server::Proto::TCP(3pm)

NAME
Net::Server::Proto::TCP - Net::Server TCP protocol. SYNOPSIS
See Net::Server::Proto. DESCRIPTION
Protocol module for Net::Server. This module implements the SOCK_STREAM socket type under INET (also known as TCP). See Net::Server::Proto. PARAMETERS
There are no additional parameters that can be specified. See Net::Server for more information on reading arguments. INTERNAL METHODS
"object" Returns an object with parameters suitable for eventual creation of a IO::Socket::INET object listining on UDP. "log_connect" Called before binding the socket to provide useful information to the logs. "connect" Called when actually binding the port. Handles default parameters before calling parent method. "reconnect" Called instead of connect method during a server hup. "accept" Override of the parent class to make sure necessary parameters are passed down to client sockets. "poll_cb" Allow for psgi compatible interface during HTTP server. "read_until" Takes a regular expression, reads from the socket until the regular expression is matched. "hup_string" Returns a unique identifier that can be passed to the re-exec'ed process during HUP. "show" Basic dumper of properties stored in the glob. "AUTOLOAD" Handle accessor methods. LICENCE
Distributed under the same terms as Net::Server perl v5.14.2 2013-11-28 Net::Server::Proto::TCP(3pm)
Man Page

13 More Discussions You Might Find Interesting

1. Programming

can client connect() when server in sleep(300); after listen(fd,5);

0 .with regards to you 1 .Thank you for reading letter 2 .a Server call sleep(20) after listern(fd,5) . When the Server is in asleep,a Client connect() to it successful and send a lot of appointed data . 3 .Why ? I think that the server is in sleep (beasue I call sleep()) , it donot block at... (3 Replies)
Discussion started by: chenhao_no1
3 Replies

2. Programming

Windows Client Vs Unix Server?

i have written a TCP client server application in c under unix. The windows systems should also be alowed to connect to the TCP server running on linux.So i wrote a small client application in VB using winsock. The client and server works fine in the linux environment. When i tried to connect the... (0 Replies)
Discussion started by: collins
0 Replies

3. UNIX for Dummies Questions & Answers

Printing Via TElent

I am in the process of writing an application to track parcels across a range of European Countries - some have GPRS and some dont. I can connect to the Unix Server - which will be running SCO Openserver 5.0.7 or later - via GPRS ebabled scanners or via the clients existing VPN and TELNET.... (4 Replies)
Discussion started by: farmacy
4 Replies

4. Programming

Mail and File server

Hi its my first time to post here i am looking for any code that deals with a TCP Server and TCP Client. The Server acts as a Mail Server and a File Server. but the code should use SMTP protocol nor FTP Protocol . only TCP protocol fundamentals its ok if its 2 seperate programs i... (0 Replies)
Discussion started by: zonixx
0 Replies

5. UNIX for Dummies Questions & Answers

how i pass object or structure using tcp/ip protocol

suppose i want to pass object or structure using TCP/IP protocol (using socket) then what are special steps required for passing the object from client to server and vice versa Regards, Amit (3 Replies)
Discussion started by: amitpansuria
3 Replies

6. Programming

How to check TCP server status

Please tell me according to C/C++ socket programming; how client can check whether server is running or not during TCP communication. (1 Reply)
Discussion started by: mansoorulhaq
1 Replies

7. Red Hat

Minicom with VMWare ESX Server

Hello! I have an ESX Server up and running. Now I want to connect a serial device to the COM Port. For that I need the minicom program. When I try "configure - make - make all" I get some errors. Can someone please explain to me, what the problems are: # ./configure checking for a... (3 Replies)
Discussion started by: Kickbit
3 Replies

8. Solaris

The X-Server can not be started on display :0

Hey Guys, I have just moved my machine to a new location and reconfigured my DNS and ip... and for an unknown reason I get this X-Server can not be started error on startup. This is what I got in my Xerrors log: It is possible to start a graphical session (X-Server) manually, ... (8 Replies)
Discussion started by: wasabihowdi
8 Replies

9. Windows & DOS: Issues & Discussions

Question; AWK to analyze Windows Server 2k3 logs

Hey, I am looking in to the possibility of trying to analyze Windows Server 2003 files by using the AWK filtering(programming) language, first off. Secondly I'm looking in to the possibility of implementing AWK (results/or the script itself) inside a "Microsoft Access 2007"-database. Some... (1 Reply)
Discussion started by: abciscool
1 Replies

10. Programming

Accept (sockets) queuing up connection requests

Yes, I guess that is what it is sort of meant to do but it is sort of a problem. Scenario: Server is running and is blocked at ACCEPT Client A connects with server Server returns from ACCEPT and moves to RECV call waiting for incoming string Client... (4 Replies)
Discussion started by: Kam5FCC
4 Replies

11. Programming

Client accidently close when the server crash

The steps to test the problem 1. Open TCP Server 2. Open TCP Client 3. TCP Client sends data to Server. 4. Close TCP Server and the client also crash without any notification Second wonderful test: 1. Comment the following statement in Client.c (at line 168) and compile it Writen(... (1 Reply)
Discussion started by: sehang
1 Replies

12. IP Networking

TCP Same Ack Sequencing for Two Packets

I was analyzing a TCP snoop. And found following scenario From Server to Client ---> SEQ 2993 ACK 1744 WIN 8192 LEN 13 From Server to Client ---> SEQ 3006 ACK 1744 WIN 8192 LEN 13 From Client to server --> SEQ 1744 ACK 3019 WIN 3304 I just want to know Why Packet 1 and 2... (3 Replies)
Discussion started by: mr_deb
3 Replies

13. UNIX and Linux Applications

Cannot connect to the Event Server after 3 attempts in autosys 11

Good afternoon: I need your help plase IN Prudcution system Autosys 4.5 was used and the was a migration to release Autosys 11. but AFTER THE RELASE TO THE NEW VERSUON r11 i cann not longer connect to the event server, so when i connected to the previous SERVER in A 4.5 i was able to use... (5 Replies)
Discussion started by: alexcol
5 Replies