A simple script that fills up opentracker with some peers, if -DWANT_IP_FROM_QUERY_STRING is specifierd

master
Dirk Engling 2007-12-11 23:34:36 +00:00
parent c05e406d9a
commit 8a259ea806
1 changed files with 17 additions and 0 deletions

17
tests/testsuite.sh Normal file
View File

@ -0,0 +1,17 @@
#!/bin/sh
while true; do
request_string="GET /announce?info_hash=\
%$(printf %02X $(( $RANDOM & 0xff )) )\
%$(printf %02X $(( $RANDOM & 0xff )) )\
2345678901234567\
%$(printf %02X $(( $RANDOM & 0xff )) )\
%$(printf %02X $(( $RANDOM & 0xff )) )\
&ip=$(( $RANDOM & 0xff )).17.13.15&port=$(( $RANDOM & 0xff )) HTTP/1.0\n"
# echo $request_string
# echo
echo $request_string | nc 127.0.0.1 6969 >/dev/null
# echo
done