home *** CD-ROM | disk | FTP | other *** search
/ InfoMagic Internet Tools 1993 July / Internet Tools.iso / RockRidge / mail / pp / pp-6.0 / h / rtsparams.h < prev    next >
Encoding:
C/C++ Source or Header  |  1991-12-18  |  892 b   |  54 lines

  1. /* RtsParams.h: RTS parameter structures */
  2.  
  3. /*
  4.  * @(#) $Header: /xtel/pp/pp-beta/h/RCS/rtsparams.h,v 6.0 1991/12/18 20:42:44 jpo Rel $
  5.  *
  6.  * $Log: rtsparams.h,v $
  7.  * Revision 6.0  1991/12/18  20:42:44  jpo
  8.  * Release 6.0
  9.  *
  10.  *
  11.  */
  12.  
  13.  
  14.  
  15. #ifndef _H_RTSPARAMS
  16. #define _H_RTSPARAMS
  17.  
  18. typedef struct RtsParams {
  19.     char            *their_name;
  20.     char            *their_passwd;
  21.     char            *their_internal_ppname;
  22.     char            *their_address;
  23.  
  24.     char            *our_name;
  25.     char            *our_passwd;
  26.     char            *our_address;
  27.  
  28.     char            *md_info;
  29.     char            *try_next;
  30.  
  31.     char            *info_mode;
  32.     char            *info_undefined;
  33.  
  34.     int            rts_mode;
  35.  
  36.     int            type;
  37. #define RTSP_1984        1
  38. #define RTSP_1988_X410MODE    2
  39. #define RTSP_1988_NORMAL    3
  40.  
  41.     int            trace_type;
  42. #define RTSP_TRACE_ADMD        1
  43. #define RTSP_TRACE_NOINT    2
  44. #define RTSP_TRACE_LOCALINT    3
  45. #define RTSP_TRACE_ALL        4
  46.     char            *fix_orig;
  47. } RtsParams;
  48.  
  49.  
  50. RtsParams       *tb_rtsparams();
  51. void            RPfree();
  52.  
  53. #endif
  54.