Correct PPTP server firewall rules chain.
[tomato/davidwu.git] / release / src / router / layer7 / protocols / testing / randchars.c
blob149c9c1aa272f41f8da74106b060c2c6185a6a86
1 #include <stdio.h>
2 #include <ctype.h>
3 #include <stdlib.h>
4 #include <time.h>
5 #include <unistd.h>
7 int main()
9 char c;
10 srand(time(NULL) * getpid());
12 while(1)
13 printf("%c", (char)rand()%256);
15 return 0;