Skip to content

Latest commit

 

History

History
24 lines (18 loc) · 404 Bytes

README.md

File metadata and controls

24 lines (18 loc) · 404 Bytes

POSIX Socket API

API functions used

  • socket
  • bind
  • listen
  • accept
  • recv
  • sendfile
  • bzero
  • htons
  • inet_pton
  • connect

Programs

Program Description
httpsrv A server program that listens for HTTP GET requests and return an HTML page.
httpclient A client program that sends a GET request to a web server and prints the response.