Re: TCP/IP client

2009-06-10 Thread Chas. Owens
On Wed, Jun 10, 2009 at 01:40, Octavian Rasnita wrote: snip > IO::Socket::INET doesn't give too many details about the methods it > supports, and I need to also study IO::Socket, and Socket and finally many > other built in perl functions or perlipc. I will study them, but I told I > was searching

AW: TCP/IP client

2009-06-09 Thread Thomas Bätzler
Octavian Rasnita wrote: > I was hoping that I could find a module that allows me to do something > like: > > use The::Module; > > my $client = The::Module->new(PeerAddr => 'localhost:9000'); [...] Use Net::Telnet. From ist description: "You're not familiar with sockets and you want a simple wa

Re: TCP/IP client

2009-06-09 Thread Octavian Rasnita
From: "Chas. Owens" 2009/6/9 Octavian Râşniţă : Hi, I need to create a TCP/IP client that connects to a server which accepts messages made from 3 parts: - a static start string of 9 bytes; - the body (that can have a variable length) - a static string of 9 bytes. ...and then

Re: TCP/IP client

2009-06-09 Thread Chas. Owens
2009/6/9 Octavian Râşniţă : > Hi, > > I need to create a TCP/IP client that connects to a server which accepts > messages made from 3 parts: > - a static start string of 9 bytes; > - the body (that can have a variable length) > - a static string of 9 bytes. > > ...and th

TCP/IP client

2009-06-09 Thread Octavian Râşniţă
Hi, I need to create a TCP/IP client that connects to a server which accepts messages made from 3 parts: - a static start string of 9 bytes; - the body (that can have a variable length) - a static string of 9 bytes. ...and then it gives a response that I need to get. I've searched the