test.cc
上传用户:aoeyumen
上传日期:2007-01-06
资源大小:3329k
文件大小:1k
源码类别:

DVD

开发平台:

Unix_Linux

  1. /*
  2.   File: test.cc
  3.   Decription:
  4.   Small test program for network utilities
  5.   Created: 08/01/1996, Alex Theo de Jong, NIST
  6. */
  7. #include <stdio.h>
  8. #include <stdlib.h>
  9. #include <String.h>
  10. #include <fstream.h>
  11. #include <sys/time.h>
  12. #include <sys/errno.h>
  13. #ifdef IRIX
  14. #include <bstring.h>
  15. #include <stropts.h>
  16. #include <poll.h>
  17. #endif
  18. #include "error.hh"
  19. #include "debug.hh"
  20. #include "util.hh"
  21. #include "network.hh"
  22. main(int argc, char** argv){
  23.   unsigned int asap=5000;
  24.   unsigned int size=376;
  25.   unsigned char* data;
  26.   SocketMulti* socket;
  27.   int vci=160;
  28.   int i=0;
  29.   if (argc>1){
  30.     size=atoi(argv[1]);
  31.     if (argc>2) vci=atoi(argv[2]);
  32.   }
  33.   data=new unsigned char[size];
  34.   socket=new SocketMulti(asap, size, vci);
  35.   message("Start ...");
  36.   if (socket->accept()<0){
  37.     error("could not accept call");
  38.     exit(0);
  39.   }
  40.   while (socket->recv(data, size)>0){
  41.     i++;
  42.     if ((i % 1000)==0) msg(".");
  43.   }
  44.   msg("n");
  45.   delete data;
  46.   delete socket;
  47.   message("Done!");
  48.   exit(0);
  49. };