https://github.com/root-project/root
Raw File
Tip revision: f133d416b35f644f89da1a6d5bbcd47e0f1b526d authored by Unknown Author on 12 February 2003, 20:59:04 UTC
This commit was manufactured by cvs2svn to create tag 'v3-05-02'.
Tip revision: f133d41
pclient.C
void pclient(int niter = 100, int bsize = 500000, int nsocks = 5)
{
   // Client program to test parallel sockets.
   //
   // To run this demo do the following:
   //   - Open two windows
   //   - Start ROOT in all two windows
   //   - Execute in the first window: .x pserv.C
   //   - Execute in the second window: .x pclient.C
   // If you want to run the pserv.C on a different host, just change
   // "localhost" in the TPSocket ctor below to the desried hostname.

   // Open connection to server
   TPSocket *sock = new TPSocket("192.168.1.2", 9090, nsocks);
   //TPSocket *sock = new TPSocket("pcroot2", 9090, nsocks);

   char *buf = new char[bsize];
   memset(buf, 65, bsize);

   sock->Send(niter, bsize);

   // send dat to server
   for (int i = 0; i < niter; i++) {
      int ret = sock->SendRaw(buf, bsize);
      if (ret < 0) {
         printf("error sending\n");
         break;
      }
   }

   delete sock;
   delete [] buf;
}
back to top