Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Changed message on "unexpected client disconnection" (it is expected … #26

Open
wants to merge 11 commits into
base: master
Choose a base branch
from
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
*.o
*.a
utl.h
server
17 changes: 4 additions & 13 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,15 +1,6 @@
all: server

clean:
@rm -rf *.o
@rm -rf server

server: main.o httpd.o
gcc -o server $^

main.o: main.c httpd.h
gcc -c -o main.o main.c

httpd.o: httpd.c httpd.h
gcc -c -o httpd.o httpd.c
all:
cd src; make

clean:
cd src; make cleanall
231 changes: 0 additions & 231 deletions httpd.c

This file was deleted.

50 changes: 0 additions & 50 deletions httpd.h

This file was deleted.

Loading