Skip to content

A C++ implementation of the HTTP protocol over TCP under Unix environment.

License

Notifications You must be signed in to change notification settings

caiomcg/HTTPOverTCP

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

23 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

HTTPOverTCP

Build Status GitHub license

A C++ implementation of the HTTP protocol over TCP under Unix environment.

Requirements

  • An Unix Environment.
  • C++ Compiler with support for standard 11.

Build Instructions

  • Clone the project.
  • Move to the debug folder.
  • Invoke the makefile.
$> git clone https://github.com/caiomcg/HTTPOverTCP.git
$> cd debug
$> make all VERBOSE=true

Execution Instructions

  • Move to the debug folder.
  • Run the created executable file followed by the desired port.
$> cd debug
$> ./WebServer 8888