diff options
author | Stefan Metzmacher <metze@samba.org> | 2010-09-28 11:04:59 +0200 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2010-09-29 01:42:28 +0200 |
commit | 115ad6012540338a73abd9de13c6bb4de3a12cf2 (patch) | |
tree | b0eef4839d67d96a382541ad6404fe12cfcf6cfb /testprogs/win32/midltests/Makefile | |
parent | cf4e57281b867878521d6f38ec5b0f552c4d2c90 (diff) | |
download | samba-115ad6012540338a73abd9de13c6bb4de3a12cf2.tar.gz samba-115ad6012540338a73abd9de13c6bb4de3a12cf2.tar.bz2 samba-115ad6012540338a73abd9de13c6bb4de3a12cf2.zip |
midltests: add a midltests_tcp.exe tool
This uses a man in the middle approach in order to dump the
request and response pdus.
It also tests NDR32 and NDR64.
metze
Diffstat (limited to 'testprogs/win32/midltests/Makefile')
-rw-r--r-- | testprogs/win32/midltests/Makefile | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/testprogs/win32/midltests/Makefile b/testprogs/win32/midltests/Makefile index 6eeadeb7b7..ded98e9582 100644 --- a/testprogs/win32/midltests/Makefile +++ b/testprogs/win32/midltests/Makefile @@ -3,10 +3,14 @@ all: @echo "nmake targets:" @echo " clean" @echo " simple" + @echo " tcp" clean: - @call nmake /f Makefile.simple /NOLOGO clean + @call nmake /f Makefile.simple /A /NOLOGO clean + @call nmake /f Makefile.tcp /A /NOLOGO clean simple: - @call nmake /f Makefile.simple /NOLOGO all + @call nmake /f Makefile.simple /A /NOLOGO all +tcp: + @call nmake /f Makefile.tcp /A /NOLOGO all |