Network Programming
theworld.com·1d
🌐TCP/IP
Preview
Report Post

Network Programming with IO::Socket

Last month, we used the LWP::UserAgent module to download web pages. LWP::UserAgent provides a high-level interface to the network: we give it a URL, and it returns a web page. This interface hides several low-level operations

  • setting up network connections
  • performing network I/O
  • managing the application protocol (HTTP)

This month, we’ll get underneath the application protocols and see how to do our own network I/O. This will give us the tools we need to write our own network servers and implement our own protocols.

There are many different computer networks and protocols. This article limits itself almost exclusively to the TCP/IP protocols that run on the internet…

Similar Posts

Loading similar posts...