Skip to content

Commit

Permalink
TwinSock 1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Troy Rollo authored and Julius Schwartzenberg committed Oct 7, 2017
1 parent 12eb657 commit 2fb31f7
Show file tree
Hide file tree
Showing 19 changed files with 4,861 additions and 0 deletions.
669 changes: 669 additions & 0 deletions commands.c

Large diffs are not rendered by default.

341 changes: 341 additions & 0 deletions copying

Large diffs are not rendered by default.

18 changes: 18 additions & 0 deletions makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
all: twinsock.exe

winsock.dll: winsock.c
bcc -WD -ml -v -w- -lc -lC winsock.c

winsock.lib : winsock.dll
implib winsock.lib winsock.dll

packet.obj: packet.c
bcc -WE -ml -v -w- -c packet.c

twinsock.obj: twinsock.c
bcc -WE -ml -v -w- -c twinsock.c

twinsock.exe: twinsock.obj packet.obj winsock.lib
bcc -WE -lc -lC -ml -v twinsock.obj packet.obj winsock.lib
rc twinsock

4 changes: 4 additions & 0 deletions makefile.unx
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
CFLAGS=-g

tshost: packet.o tshost.o term.o commands.o
cc $(CFLAGS) -o tshost packet.o tshost.o term.o commands.o
Loading

0 comments on commit 2fb31f7

Please sign in to comment.