home *** CD-ROM | disk | FTP | other *** search
/ The Datafile PD-CD 3 / PDCD_3.iso / internet / netlite / NET / h / ASY < prev    next >
Text File  |  1993-03-27  |  295b  |  18 lines

  1. /* Asynch controller control block */
  2. struct asy {
  3.        struct interface *iface;
  4.        int  port;
  5.        int  speed;
  6. };
  7.  
  8. extern struct asy asy[];
  9. extern unsigned nasy;
  10.  
  11. #define ASY_MAX         1
  12.  
  13. #define SLIP_MODE       0
  14. #define UNKNOWN         1
  15.  
  16. /* In ASY */
  17. int asy_attach(int, char **);
  18.