home *** CD-ROM | disk | FTP | other *** search
/ The Fred Fish Collection 1.5 / ffcollection-1-5-1992-11.iso / ff_disks / 300-399 / ff330.lzh / Vt100 / Src.lzh / Src / kermitproto.h < prev    next >
Text File  |  1990-03-01  |  976b  |  27 lines

  1. /*
  2.  * Include file for kermitproto.w.  You probably don't want to change
  3.  * any of the following manifest constants.
  4.  * this module.
  5.  */
  6. #define MAXSP 2048    /* Maximum length packet to send        */
  7. #define MAXRP 1024    /* Maximum length packet to receive        */
  8. #define DRPSIZ 94    /* Default data size of received packet        */
  9. #define DSPSIZ 94    /* Default data size of sent packet        */
  10. #define MAXWS 1        /* Maximum window size for sliding windows    */
  11. #define NULL 0L
  12.  
  13. /*
  14.  * The following defines change the names of some things as an example
  15.  * of how you can interface kermitproto.w to your own code.
  16.  *
  17.  * WARNING WILL ROBINSON:  These are highly specific to the Amiga
  18.  * terminal emulator program "VT100" by Dave Wecker et. al. and must
  19.  * certainly change for your code.
  20.  */
  21.  
  22. #define parity p_parity        /* parity on?        */
  23. #define text p_mode        /* Text or binary mode? */
  24. #define convert p_convert    /* Convert files to lower case? */
  25. #define urpsiz p_kmaxpack    /* Kermit maximum packet size */
  26.  
  27.