Adds TCP/IP stuff

This commit is contained in:
2015-01-09 13:21:07 -07:00
parent 6276473f88
commit 7b862ad270
18 changed files with 552 additions and 380 deletions

12
TCP/Makefile Normal file
View File

@@ -0,0 +1,12 @@
all: TCPserver.o TCPserverExample
HDRS = TCPserver.h
CXXFLAGS = -Wall
TCPserver.o TCPserverExample.o: $(HDRS)
TCPserverExample: TCPserver.o TCPserverExample.o
$(CXX) $^ -o $@
clean:
rm TCPserver.o TCPserverExample.o TCPserverExample