Skip to content

Commit 3ac3272

Browse files
committed
Make TELNET do both read and write in parallel.
1 parent 15a5d6f commit 3ac3272

File tree

4 files changed

+349
-63
lines changed

4 files changed

+349
-63
lines changed

src/Makefile

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,5 +19,7 @@ finger: finger.o libncp.a
1919
finser: finser.o libncp.a
2020
$(CC) -o $@ $< $(NCP)
2121

22-
telnet: telnet.o libncp.a
23-
$(CC) -o $@ $< $(NCP)
22+
telnet: telnet.o tty.o libncp.a
23+
$(CC) -o $@ telnet.o tty.o $(NCP)
24+
25+
tty:: tty.h

0 commit comments

Comments
 (0)