First lines of experimental pcap output support

This will serve to debug packets right under wireshark !
This commit is contained in:
Aris Adamantiadis
2009-11-08 23:42:41 +01:00
parent 10f27457d3
commit 10b625e180
9 changed files with 396 additions and 1 deletions

View File

@@ -1,4 +1,4 @@
all: test_tunnel test_exec
all: test_tunnel test_exec test_pcap
CFLAGS=-I../include/ -g -Wall
LDFLAGS=-lssh -L../build/libssh/
@@ -8,5 +8,8 @@ test_tunnel: test_tunnel.o authentication.o connection.o
test_exec: test_exec.o authentication.o connection.o
gcc -o $@ $^ $(LDFLAGS)
test_pcap: test_pcap.o
gcc -o $@ $^ $(LDFLAGS)
clean:
rm -f *.o test_tunnel