Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 807 Bytes

README.md

File metadata and controls

32 lines (23 loc) · 807 Bytes

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