diff options
author | Tom Smeding <tom.smeding@gmail.com> | 2018-07-23 16:23:56 +0200 |
---|---|---|
committer | Tom Smeding <tom.smeding@gmail.com> | 2018-07-25 18:07:49 +0200 |
commit | b582cce69853d0a562dd0171914426887e854966 (patch) | |
tree | 9b5a1c13eb766b8ab4d406d62fa84ec5303e2b46 /Makefile | |
parent | 5722c47aa3402f1458da9eec332153a454a540b7 (diff) |
Use raw sockets for server
No more buffering, but auto-reply needs to be turned
off; see run_server.sh.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -15,7 +15,7 @@ clean: server: server.o $(OBJECTS) - $(CC) $(CFLAGS) $^ -o $@ -lnetfilter_log + $(CC) $(CFLAGS) $^ -o $@ client: client.o $(OBJECTS) $(CC) $(CFLAGS) $^ -o $@ |