home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / pc3270sa.zip / apps / winaping / pinginfo.h < prev    next >
Text File  |  2002-02-28  |  401b  |  27 lines

  1. #ifndef _PINGINFO_H_
  2. #define _PINGINFO_H_
  3.  
  4. struct PingInfo {
  5.   PingInfo();
  6.   PingInfo(PingInfo const &pi);
  7.  
  8.   PingInfo& operator=(PingInfo const &pi);
  9.  
  10.   CString destination;
  11.   CString tpName;
  12.   CString mode;
  13.   CString userID;
  14.   CString password;
  15.  
  16.   DWORD packetSize;
  17.   DWORD consecutivePackets;
  18.   DWORD iterations;
  19.  
  20.   BOOL echo;
  21.   BOOL security;
  22.   BOOL verify;
  23.  
  24. };
  25.  
  26. #endif
  27.