home *** CD-ROM | disk | FTP | other *** search
/ HPAVC / HPAVC CD-ROM.iso / pc / ABUSESRC.ZIP / AbuseSrc / macabuse / src / net / unix / undrv.hpp < prev   
Encoding:
C/C++ Source or Header  |  1997-05-20  |  311 b   |  16 lines

  1. #ifndef __UNDRV_HPP_
  2. #define __UNDRV_HPP_
  3.  
  4. #define DEFAULT_COMM_PORT 20202
  5. #define DEFAULT_GAME_PORT 20203
  6. #define MAX_JOINERS 32  // maximum clients that can join at the same time                    
  7.  
  8. #include "sock.hpp"
  9.  
  10. void undrv_cleanup();
  11.  
  12. extern net_socket *game_sock,*comm_sock;
  13.  
  14. #endif
  15.  
  16.