SocketUtils.h 153 B

12345678910
  1. #ifndef SOCKETUTILS_H
  2. #define SOCKETUTILS_H
  3. #include "Stream.h"
  4. int sendAll(int socket, Stream* out);
  5. int receiveAll(int socket, Stream* in);
  6. #endif