Skip to content
/ hypo Public

[U] A HTTP/1.0 server, written from scratch in C99 for POSIX

Notifications You must be signed in to change notification settings

sla-ppy/hypo

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Usage:

1. Compile with: clang src/server.c src/request.c src/util.c -o server -Wall -Wextra -pedantic -std=gnu99 -g -O0
2. Run with: ./server <port>
Where port is: 1024-65535
Refer to terminal if met with problems

Using -std=gnu99 proved to be necessary, as -std=c99 has issues with POSIX
-g => generates debug info
-O0 => genereate unoptimized code (optimization flag)

About

[U] A HTTP/1.0 server, written from scratch in C99 for POSIX

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published