ckudia.c
上传用户:dufan58
上传日期:2007-01-05
资源大小:3407k
文件大小:217k
源码类别:

通讯/手机编程

开发平台:

Windows_Unix

  1. #include "ckcsym.h"
  2. char *dialv = "Dial Command, 7.0.131, 22 Dec 1999";
  3. #ifndef NOLOCAL
  4. #ifndef NODIAL
  5. #ifndef NOICP
  6. #ifndef CK_ATDT
  7. #define CK_ATDT
  8. #endif /* CK_ATDT */
  9. #ifndef NOOLDMODEMS        /* Unless instructed otherwise, */
  10. #define OLDMODEMS          /* keep support for old modems. */
  11. #endif /* NOOLDMODEMS */
  12. #ifndef M_OLD    /* Hide old modem keywords in SET MODEM table. */
  13. #define M_OLD 0    /* Define as CM_INV to make them invisible. */
  14. #endif /* M_OLD */
  15. /*  C K U D I A  --  Module for automatic modem dialing. */
  16. /*
  17.   Copyright (C) 1985, 2000,
  18.     Trustees of Columbia University in the City of New York.
  19.     All rights reserved.  See the C-Kermit COPYING.TXT file or the
  20.     copyright text in the ckcmai.c module for disclaimer and permissions.
  21. */
  22. /*
  23.   Authors:
  24.   Original (version 1, 1985) author: Herm Fischer, Encino, CA.
  25.   Contributed to Columbia University in 1985 for inclusion in C-Kermit 4.0.
  26.   Author and maintainer since 1985: Frank da Cruz, Columbia University,
  27.   fdc@columbia.edu.
  28.   Contributions by many others throughout the years, including: Jeffrey
  29.   Altman, Mark Berryman, Fernando Cabral, John Chmielewski, Joe Doupnik,
  30.   Richard Hill, Larry Jacobs, Eric Jones, Tom Kloos, Bob Larson, Peter Mauzey,
  31.   Joe Orost, Kevin O'Gorman, Kai Uwe Rommel, Dan Schullman, Warren Tucker, and
  32.   others too numerous to list here (but see acknowledgements in ckcmai.c).
  33. */
  34. /*
  35.   Entry points:
  36.     ckdial(char * number)   Dial a number or answer a call
  37.     dialhup()               Hang up a dialed connection
  38.     mdmhup()                Use modem commands to hang up
  39.   All other routines are static.
  40.   Don't call dialhup() or mdmhup() without first calling ckdial().
  41. */
  42. /*
  43.   This module calls externally defined system-dependent functions for
  44.   communications i/o, as described in CKCPLM.DOC, the C-Kermit Program Logic
  45.   Manual, and thus should be portable to all systems that implement those
  46.   functions, and where alarm() and signal() work as they do in UNIX.
  47.   HOW TO ADD SUPPORT FOR ANOTHER MODEM:
  48.   1. In ckuusr.h, define a modem-type number symbol (n_XXX) for the new modem,
  49.      the next highest one.
  50.   2. In ckuusr.h, adjust MAX_MDM to the new number of modem types.
  51. The remaining steps are in this module:
  52.   3. Create a MDMINF structure for it.  NOTE: The wake_str should include
  53.      all invariant setup info, e.g. enable result codes, BREAK transparency,
  54.      modulation negotiation, etc.  See ckcker.h for MDMINF struct definition.
  55.   4. Add the address of the MDMINF structure to the modemp[] array,
  56.      according to the numerical value of the modem-type number.
  57.   5. Add the user-visible (SET MODEM) name and corresponding modem number
  58.      to the mdmtab[] array, in alphabetical order by modem-name string.
  59.   6. If this falls into a class like is_rockwell, is_supra, etc, add the new
  60.      one to the definition of the class.
  61.   7. Adjust the gethrn() routine to account for any special numeric result
  62.      codes (if it's a Hayes compatible modem).
  63.   8. Read through the code and add any modem-specific sections as necessary.
  64.      For most modern Hayes-compatible modems, no specific code will be
  65.      needed.
  66.   NOTE: The MINIDIAL symbol is used to build this module to include support
  67.   for only a minimum number of standard and/or generally useful modem types,
  68.   namely Hayes 1200 and 2400, ITU-T (CCITT) V.25bis and V.25ter (V.250),
  69.   Generic-High-Speed, "Unknown", and None.  When adding support for a new
  70.   modem type, keep it outside of the MINIDIAL sections unless it deserves to
  71.   be in it.
  72. */
  73. #include "ckcdeb.h"
  74. #ifndef MAC
  75. #include <signal.h>
  76. #endif /* MAC */
  77. #include "ckcasc.h"
  78. #include "ckcker.h"
  79. #include "ckucmd.h"
  80. #include "ckcnet.h"
  81. #include "ckuusr.h"
  82. #ifdef OS2ONLY
  83. #define INCL_VIO /* Needed for ckocon.h */
  84. #include <os2.h>
  85. #undef COMMENT
  86. #include "ckocon.h"
  87. #endif /* OS2ONLY */
  88. #ifdef NT
  89. #include <windows.h>
  90. #include <tapi.h>
  91. #include "cknwin.h"
  92. #include "ckntap.h"
  93. #endif /* NT */
  94. #ifdef OS2
  95. #include "ckowin.h"
  96. #endif /* OS2 */
  97. #ifndef ZILOG
  98. #ifdef NT
  99. #include <setjmpex.h>
  100. #else /* NT */
  101. #include <setjmp.h>
  102. #endif /* NT */
  103. #else
  104. #include <setret.h>
  105. #endif /* ZILOG */
  106. #include "ckcsig.h"        /* C-Kermit signal processing */
  107. #ifdef MAC
  108. #define signal msignal
  109. #define SIGTYP long
  110. #define alarm malarm
  111. #define SIG_IGN 0
  112. #define SIGALRM 1
  113. #define SIGINT  2
  114. SIGTYP (*msignal(int type, SIGTYP (*func)(int)))(int);
  115. #endif /* MAC */
  116. #ifdef AMIGA
  117. #define signal asignal
  118. #define alarm aalarm
  119. #define SIGALRM (_NUMSIG+1)
  120. #define SIGTYP void
  121. SIGTYP (*asignal(int type, SIGTYP (*func)(int)))(int);
  122. unsigned aalarm(unsigned);
  123. #endif /* AMIGA */
  124. #ifdef STRATUS
  125. /*
  126.   VOS doesn't have alarm(), but it does have some things we can work with.
  127.   However, we have to catch all the signals in one place to do this, so
  128.   we intercept the signal() routine and call it from our own replacement.
  129. */
  130. #define signal vsignal
  131. #define alarm valarm
  132. SIGTYP (*vsignal(int type, SIGTYP (*func)(int)))(int);
  133. int valarm(int interval);
  134. #ifdef putchar
  135. #undef putchar
  136. #endif /* putchar */
  137. #define putchar(x) conoc(x)
  138. #ifdef getchar
  139. #undef getchar
  140. #endif /* getchar */
  141. #define getchar(x) coninc(0)
  142. #endif /* STRATUS */
  143. #ifdef OS2
  144. #ifdef putchar
  145. #undef putchar
  146. #endif /* putchar */
  147. #define putchar(x) conoc(x)
  148. #endif /* OS2 */
  149. #ifndef NOHINTS
  150. extern int hints;
  151. #endif /* NOHINTS */
  152. #ifdef CK_TAPI
  153. extern int tttapi;
  154. extern int tapipass;
  155. #endif /* CK_TAPI */
  156. #ifdef CKLOGDIAL
  157. extern int dialog;
  158. #endif /* CKLOGDIAL */
  159. #ifdef BIGBUFOK /* Only for versions that are not tight on memory */
  160. char * dialmsg[] = { /* DIAL status strings */
  161.     /* Keyed to numbers defined in ckcker.h -- keep in sync! */
  162.     "DIAL succeeded",     /*  0 */
  163.     "Modem type not specified",     /*  1 */
  164.     "Communication device not specified",   /*  2 */
  165.     "Communication device can't be opened", /*  3 */
  166.     "Speed not specified",     /*  4 */
  167.     "Pre-DIAL hangup failed",     /*  5 */
  168.     "Internal error",     /*  6 */
  169.     "Device input/output error",     /*  7 */
  170.     "DIAL TIMEOUT expired",     /*  8 */
  171.     "Interrupted by user",     /*  9 */
  172.     "Modem not ready",     /* 10 */
  173.     "Partial dial OK",     /* 11 */
  174.     "Dial directory lookup error",     /* 12 */
  175.     NULL,     /* 13 */
  176.     NULL,     /* 14 */
  177.     NULL,     /* 15 */
  178.     NULL,     /* 16 */
  179.     NULL,     /* 17 */
  180.     NULL,     /* 18 */
  181.     NULL,     /* 19 */
  182.     "Modem command error",     /* 20 */
  183.     "Failure to initialize modem",     /* 21 */
  184.     "Phone busy",     /* 22 */
  185.     "No carrier",     /* 23 */
  186.     "No dialtone",     /* 24 */
  187.     "Incoming call",     /* 25 */
  188.     "No answer",     /* 26 */
  189.     "Disconnected",     /* 27 */
  190.     "Answered by voice",     /* 28 */
  191.     "Access denied / forbidden call",     /* 29 */
  192.     "Blacklisted",     /* 30 */
  193.     "Delayed",         /* 31 */
  194.     "Fax connection",     /* 32 */
  195.     "TAPI reported failure - reason unknown", /* 33 */
  196.     NULL     /* 34 */
  197. };
  198. #endif /* BIGBUFOK */
  199. #ifdef NOSPL
  200. static
  201. #endif /* NOSPL */
  202. char modemmsg[128] = { NUL, NUL }; /* DIAL response from modem */
  203. #ifdef NTSIG
  204. extern int TlsIndex;
  205. #endif /* NTSIG */
  206. int /* SET DIAL parameters */
  207.   dialhng = 1, /* DIAL HANGUP, default is ON */
  208.   dialdpy = 0, /* DIAL DISPLAY, default is OFF */
  209.   mdmspd  = 0, /* DIAL SPEED-MATCHING (0 = OFF) */
  210.   mdmspk  = 1, /* MODEM SPEAKER */
  211.   mdmvol  = 2, /* MODEM VOLUME */
  212.   dialtmo = 0, /* DIAL TIMEOUT */
  213.   dialatmo = -1, /* ANSWER TIMEOUT */
  214.   dialksp = 0, /* DIAL KERMIT-SPOOF, 0 = OFF */
  215.   dialidt = 0, /* DIAL IGNORE-DIALTONE */
  216. #ifndef CK_RTSCTS
  217.   /* If we can't do RTS/CTS then there's no flow control at first */
  218.   /* So we might easily lose the echo to the init string and the OK */
  219.   /* and then give "No response from modem" errors. */
  220.   dialpace = 150, /* DIAL PACING */
  221. #else
  222.   dialpace = -1,
  223. #endif /* CK_RTSCTS */
  224. #ifdef NOMDMHUP
  225.   dialmhu = 0; /* DIAL MODEM-HANGUP, 0 = OFF */
  226. #else
  227.   dialmhu = 1; /* DIAL MODEM-HANGUP */
  228. #endif /* NOMDMHUP */
  229. int
  230.   dialec = 0, /* DIAL ERROR-CORRECTION */
  231.   dialdc = 0, /* DIAL COMPRESSION  */
  232. #ifdef VMS
  233.   /* VMS can only use Xon/Xoff */
  234.   dialfc = FLO_XONX, /* DIAL FLOW-CONTROL */
  235. #else
  236.   dialfc = FLO_AUTO,
  237. #endif /* VMS */
  238.   dialmth = XYDM_D, /* DIAL METHOD (Tone, Pulse, Defalt) */
  239.   dialmauto = 1, /* DIAL METHOD is AUTO */
  240.   dialesc = 0; /* DIAL ESCAPE */
  241. int telephony = 0; /* Command-line '-T' option */
  242. long dialmax = 0L, /* Modem's max interface speed */
  243.   dialcapas  = 0L; /* Modem's capabilities */
  244. int dialsta = DIA_UNK; /* Detailed return code (ckuusr.h) */
  245. int is_rockwell = 0;
  246. int is_motorola = 0;
  247. int is_supra = 0;
  248. int is_hayeshispd = 0;
  249. char *dialdir[MAXDDIR]; /* DIAL DIRECTORY filename array */
  250. int   ndialdir = 0; /* How many dial directories */
  251. char *dialini = NULL; /* DIAL INIT-STRING, default none */
  252. char *dialmstr = NULL; /* DIAL MODE-STRING, default none */
  253. char *dialmprmt = NULL; /* DIAL MODE-PROMPT, default none */
  254. char *dialcmd = NULL; /* DIAL DIAL-COMMAND, default none */
  255. char *dialnpr = NULL; /* DIAL PREFIX, ditto */
  256. char *diallac = NULL; /* DIAL LOCAL-AREA-CODE, ditto */
  257. char *diallcc = NULL; /* DIAL LOCAL-COUNTRY-CODE, ditto */
  258. char *dialixp = NULL; /* DIAL INTL-PREFIX */
  259. char *dialixs = NULL; /* DIAL INTL-SUFFIX */
  260. char *dialldp = NULL; /* DIAL LD-PREFIX */
  261. char *diallds = NULL; /* DIAL LD-SUFFIX */
  262. char *diallcp = NULL; /* DIAL LOCAL-PREFIX */
  263. char *diallcs = NULL; /* DIAL LOCAL-SUFFIX */
  264. char *dialpxi = NULL; /* DIAL PBX-INTERNAL-PREFIX */
  265. char *dialpxo = NULL; /* DIAL PBX-OUTSIDE-PREFIX */
  266. char *dialsfx = NULL; /* DIAL SUFFIX */
  267. char *dialtfp = NULL; /* DIAL TOLL-FREE-PREFIX */
  268. extern char * d_name;
  269. extern char * dialtfc[]; /* DIAL TOLL-FREE-AREA-CODE */
  270. extern char * dialpxx[]; /* DIAL PBX-EXCHANGE */
  271. extern int ntollfree;
  272. extern int ndialpxx;
  273. char *dialname  = NULL; /* Descriptive name for modem */
  274. char *dialdcon  = NULL; /* DC ON command */
  275. char *dialdcoff = NULL; /* DC OFF command */
  276. char *dialecon  = NULL; /* EC ON command */
  277. char *dialecoff = NULL; /* EC OFF command */
  278. char *dialaaon  = NULL; /* Autoanswer ON command */
  279. char *dialaaoff = NULL; /* Autoanswer OFF command */
  280. char *dialhcmd  = NULL; /* Hangup command */
  281. char *dialhwfc  = NULL; /* Hardware flow control command */
  282. char *dialswfc  = NULL; /* (Local) software f.c. command */
  283. char *dialnofc  = NULL; /* No (Local) flow control command */
  284. char *dialtone  = NULL; /* Command to force tone dialing */
  285. char *dialpulse = NULL; /*  ..to force pulse dialing */
  286. char *dialx3    = NULL; /* Ignore dialtone */
  287. char *mdmname   = NULL;
  288. char *dialspon  = NULL; /* Speaker On command */
  289. char *dialspoff = NULL; /* Speaker Off command */
  290. char *dialvol1  = NULL; /* Volume Low command */
  291. char *dialvol2  = NULL; /* Volume Medium command */
  292. char *dialvol3  = NULL; /* Volume High command */
  293. char *dialini2  = NULL; /* Second init string */
  294. char *dialmac   = NULL; /* DIAL macro */
  295. extern char * dialpucc[]; /* DIAL Pulse countries */
  296. extern int ndialpucc;
  297. extern char * dialtocc[]; /* DIAL Tone countries */
  298. extern int ndialtocc;
  299. /* Countries where pulse dialing must be used (tone is not available) */
  300. static char * pulsecc[] = { NULL }; /* (Unknown at present) */
  301. /* Countries where tone dialing may safely be the default. */
  302. /* "+" marks countries where pulse is also allowed. */
  303. /* Both Pulse and Tone are allowed in Austria & Switzerland but it is not */
  304. /* yet known if Tone is universally in those countries. */
  305. static char * tonecc[] = {
  306.     "1", /* + North American Numbering Plan */
  307.     "31", /*   Netherlands */
  308.     "32", /*   Belgium */
  309.     "33", /*   France */
  310.     "352", /*   Luxembourg */
  311.     "353", /*   Ireland */
  312.     "354", /*   Iceland */
  313.     "358", /*   Finland */
  314.     "39", /*   Italy */
  315.     "44", /* + UK */
  316.     "45", /*   Denmark */
  317.     "46", /*   Sweden */
  318.     "47", /*   Norway */
  319.     "49", /* + Germany */
  320.     NULL
  321. };
  322. #ifndef MINIDIAL
  323. /*
  324.   Telebit model codes:
  325.   ATI  Model Numbers           Examples
  326.   ---  -------------           --------
  327.   123                          Telebit in "total Hayes-1200" emulation mode
  328.   960                          Telebit in Conventional Command (Hayes) mode
  329.   961  RA12C                   IBM PC internal original Trailblazer
  330.   962  RA12E                   External original Trailblazer
  331.   963  RM12C                   Rackmount original Trailblazer
  332.   964  T18PC                   IBM PC internal Trailblazer-Plus (TB+)
  333.   965  T18SA, T2SAA, T2SAS     External TB+, T1600, T2000, T3000, WB, and later
  334.   966  T18RMM                  Rackmount TB+
  335.   967  T2MC                    IBM PS/2 internal TB+
  336.   968  T1000                   External T1000
  337.   969  ?                       Qblazer
  338.   970                          Qblazer Plus
  339.   971  T2500                   External T2500
  340.   972  T2500                   Rackmount T2500
  341. */
  342. /* Telebit model codes */
  343. #define TB_UNK  0 /* Unknown Telebit model */
  344. #define TB_BLAZ 1 /* Original TrailBlazer */
  345. #define TB_PLUS 2 /* TrailBlazer Plus */
  346. #define TB_1000 3 /* T1000 */
  347. #define TB_1500 4 /* T1500 */
  348. #define TB_1600 5 /* T1600 */
  349. #define TB_2000 6 /* T2000 */
  350. #define TB_2500 7 /* T2500 */
  351. #define TB_3000 8 /* T3000 */
  352. #define TB_QBLA 9 /* Qblazer */
  353. #define TB_WBLA 10 /* WorldBlazer */
  354. #define TB__MAX 10 /* Highest number */
  355. char *tb_name[] = { /* Array of model names */
  356.     "Unknown", /* TB_UNK  */
  357.     "TrailBlazer", /* TB_BLAZ */
  358.     "TrailBlazer-Plus", /* TB_PLUS */
  359.     "T1000", /* TB_1000 */
  360.     "T1500", /* TB_1500 */
  361.     "T1600", /* TB_1600 */
  362.     "T2000", /* TB_2000 */
  363.     "T2500", /* TB_2500 */
  364.     "T3000", /* TB_3000 */
  365.     "Qblazer", /* TB_QBLA */
  366.     "WorldBlazer", /* TB_WBLA */
  367.     ""
  368. };
  369. #endif /* MINIDIAL */
  370. extern int flow, local, mdmtyp, quiet, backgrd, parity, seslog, network;
  371. extern int carrier, duplex, mdmsav;
  372. extern int ttnproto;
  373. extern long speed;
  374. extern char ttname[], sesfil[];
  375. #ifndef NOXFER
  376. extern CHAR stchr;
  377. #endif /* NOXFER */
  378. /*  Failure codes  */
  379. #define F_TIME 1 /* timeout */
  380. #define F_INT 2 /* interrupt */
  381. #define F_MODEM 3 /* modem-detected failure */
  382. #define F_MINIT 4 /* cannot initialize modem */
  383. #ifndef CK_TAPI
  384. static
  385. #endif /* CK_TAPI */
  386. #ifdef OS2
  387.  volatile
  388. #endif /* OS2 */
  389.  int fail_code =  0; /* Default failure reason. */
  390. static int xredial = 0;
  391. static int func_code; /* 0 = dialing, nonzero = answering */
  392. static int partial;
  393. static int mymdmtyp = 0;
  394. #define DW_NOTHING      0 /* What we are doing */
  395. #define DW_INIT         1
  396. #define DW_DIAL         2
  397. static int dial_what = DW_NOTHING; /* Nothing at first. */
  398. static int nonverbal = 0; /* Hayes in numeric response mode */
  399. static MDMINF * mp;
  400. static CHAR escbuf[6];
  401. static long mdmcapas;
  402. _PROTOTYP (static VOID dreset, (void) );
  403. _PROTOTYP (static int (*xx_ok), (int,int) );
  404. _PROTOTYP (static int ddinc, (int) );
  405. _PROTOTYP (int dialhup, (void) );
  406. _PROTOTYP (int getok, (int,int) );
  407. _PROTOTYP (char * ck_time, (void) );
  408. _PROTOTYP (static VOID ttslow, (char *, int) );
  409. #ifdef COMMENT
  410. _PROTOTYP (static VOID xcpy, (char *, char *, unsigned int) );
  411. #endif /* COMMENT */
  412. _PROTOTYP (static VOID waitfor, (char *) );
  413. _PROTOTYP (static VOID dialoc, (char) );
  414. _PROTOTYP (static int didweget, (char *, char *) );
  415. _PROTOTYP (static VOID spdchg, (long) );
  416. _PROTOTYP (static int dialfail, (int) );
  417. _PROTOTYP (static VOID gethrw, (void) );
  418. _PROTOTYP (static VOID gethrn, (void) );
  419. int dialudt = n_UDEF; /* Number of user-defined type */
  420. /* BEGIN MDMINF STRUCT DEFINITIONS */
  421. /*
  422.   Declare structures containing modem-specific information.
  423.   REMEMBER that only the first SEVEN characters of these names are
  424.   guaranteed to be unique.
  425.   First declare the three types that are allowed for MINIDIAL versions.
  426. */
  427. static
  428. MDMINF CCITT = /* CCITT / ITU-T V.25bis autodialer */
  429. /*
  430.   According to V.25bis:
  431.   . Even parity is required for giving commands to the modem.
  432.   . Commands might or might not echo.
  433.   . Responses ("Indications") from the modem are terminated by CR and LF.
  434.   . Call setup is accomplished by:
  435.     - DTE raises DTR (V.24 circuit 108)              [ttopen() does this]
  436.     - Modem raises CTS (V.24 circuit 106)            [C-Kermit ignores this]
  437.     - DTE issues a call request command ("CRN")
  438.     - Modem responds with "VAL" ("command accepted")
  439.     - If the call is completed:
  440.         modem responds with "CNX" ("call connected");
  441.         modem turns CTS (106) OFF;
  442.         modem turns DSR (107) ON;
  443.       else:
  444.         modem responds with "CFI <parameter>" ("call failure indication").
  445.   . To clear a call, the DTE turns DTR (108) OFF.
  446.   . There is no mention of the Carrier Detect circuit (109) in the standard.
  447.   . There is no provision for "escaping back" to the modem's command mode.
  448.   It is not known whether there exists in real life a pure V.25bis modem.
  449.   If there is, this code has never been tested on it.  See the Digitel entry.
  450. */
  451.     {
  452.     "Any CCITT / ITU-T V.25bis conformant modem",
  453.     "", /* pulse command */
  454.     "", /* tone command */
  455.     40, /* dial_time -- programmable -- */
  456.     ",:", /* pause_chars -- "," waits for programmable time */
  457.                         /* ":" waits for dial tone */
  458.     10, /* pause_time (seconds, just a guess) */
  459.     "", /* wake_str (none) */
  460.     200, /* wake_rate (msec) */
  461.     "VAL", /* wake_prompt */
  462.     "", /* dmode_str (none) */
  463.     "", /* dmode_prompt (none) */
  464.     "CRN%s15",        /* dial_str */
  465.     200, /* dial_rate (msec) */
  466.     0, /* No esc_time */
  467.     0, /* No esc_char  */
  468.     "", /* No hup_str  */
  469.     "", /* hwfc_str */
  470.     "", /* swfc_str */
  471.     "", /* nofc_str */
  472.     "", /* ec_on_str */
  473.     "", /* ec_off_str */
  474.     "", /* dc_on_str */
  475.     "", /* dc_off_str */
  476.     "CIC15", /* aa_on_str */
  477.     "DIC15", /* aa_off_str */
  478.     "", /* sb_on_str */
  479.     "", /* sb_off_str */
  480.     "", /* sp_off_str */
  481.     "", /* sp_on_str */
  482.     "", /* vol1_str */
  483.     "", /* vol2_str */
  484.     "", /* vol3_str */
  485.     "", /* ignoredt */
  486.     "", /* ini2 */
  487.     0L, /* max_speed */
  488.     CKD_V25, /* capas */
  489.     NULL /* No ok_fn    */
  490. };
  491. static
  492. MDMINF HAYES = /* Hayes 2400 and compatible modems */
  493.     {
  494.     "Hayes Smartmodem 2400 and compatibles",
  495.     "ATP15", /* pulse command */
  496.     "ATT15", /* tone command */
  497.     35, /* dial_time */
  498.     ",", /* pause_chars */
  499.     2, /* pause_time */
  500. #ifdef OS2
  501.     "ATE1Q0V1&S0&C1&D215", /* wake_str */
  502. #else
  503. #ifdef VMS
  504.     "ATQ0&S115", /* wake_str */
  505. #else
  506.     "ATQ015", /* wake_str */
  507. #endif /* VMS */
  508. #endif /* OS2 */
  509.     0, /* wake_rate */
  510.     "OK15", /* wake_prompt */
  511.     "", /* dmode_str */
  512.     "", /* dmode_prompt */
  513.     "ATD%s15", /* dial_str, user supplies D or T */
  514.     0, /* dial_rate */
  515.     1100, /* esc_time */
  516.     43, /* esc_char */
  517.     "ATQ0H015", /* hup_str */
  518.     "", /* hwfc_str */
  519.     "", /* swfc_str */
  520.     "", /* nofc_str */
  521.     "", /* ec_on_str */
  522.     "", /* ec_off_str */
  523.     "", /* dc_on_str */
  524.     "", /* dc_off_str */
  525.     "ATS0=115", /* aa_on_str */
  526.     "ATS0=015", /* aa_off_str */
  527.     "", /* sb_on_str */
  528.     "", /* sb_off_str */
  529.     "ATM115", /* sp_on_str */
  530.     "ATM015", /* sp_off_str */
  531.     "ATL115", /* vol1_str */
  532.     "ATL215", /* vol2_str */
  533.     "ATL315", /* vol3_str */
  534.     "ATX315", /* ignoredt */
  535.     "", /* ini2 */
  536.     2400L, /* max_speed */
  537.     CKD_AT, /* capas */
  538.     getok /* ok_fn */
  539. };
  540. /*
  541.   The intent of the "unknown" modem is to allow KERMIT to support
  542.   unknown modems by having the user type the entire autodial sequence
  543.   (possibly including control characters, etc.) as the "phone number".
  544.   The protocol and other characteristics of this modem are unknown, with
  545.   some "reasonable" values being chosen for some of them.  The only way to
  546.   detect if a connection is made is to look for carrier.
  547. */
  548. static
  549. MDMINF UNKNOWN = /* Information for "Unknown" modem */
  550.     {
  551.     "Unknown", /* name */
  552.     "", /* pulse command */
  553.     "", /* tone command */
  554.     30, /* dial_time */
  555.     "", /* pause_chars */
  556.     0, /* pause_time */
  557.     "", /* wake_str */
  558.     0, /* wake_rate */
  559.     "", /* wake_prompt */
  560.     "", /* dmode_str */
  561.     NULL, /* dmode_prompt */
  562.     "%s15", /* dial_str */
  563.     0, /* dial_rate */
  564.     0, /* esc_time */
  565.     0, /* esc_char */
  566.     "", /* hup_str */
  567.     "", /* hwfc_str */
  568.     "", /* swfc_str */
  569.     "", /* nofc_str */
  570.     "", /* ec_on_str */
  571.     "", /* ec_off_str */
  572.     "", /* dc_on_str */
  573.     "", /* dc_off_str */
  574.     "", /* aa_on_str */
  575.     "", /* aa_off_str */
  576.     "", /* sb_on_str */
  577.     "", /* sb_off_str */
  578.     "", /* sp_off_str */
  579.     "", /* sp_on_str */
  580.     "", /* vol1_str */
  581.     "", /* vol2_str */
  582.     "", /* vol3_str */
  583.     "", /* ignoredt */
  584.     "", /* ini2 */
  585.     0L, /* max_speed */
  586.     0, /* capas */
  587.     NULL /* ok_fn */
  588. };
  589. #ifndef MINIDIAL
  590. static
  591. MDMINF ATTISN = /* AT&T ISN Network */
  592.     {
  593.     "", /* pulse command */
  594.     "", /* tone command */
  595.     "AT&T ISN Network",
  596.     30, /* Dial time */
  597.     "", /* Pause characters */
  598.     0, /* Pause time */
  599.     "15151515", /* Wake string */
  600.     900, /* Wake rate */
  601.     "DIAL", /* Wake prompt */
  602.     "", /* dmode_str */
  603.     "", /* dmode_prompt */
  604.     "%s15", /* dial_str */
  605.     0, /* dial_rate */
  606.     0, /* esc_time */
  607.     0, /* esc_char */
  608.     "", /* hup_str */
  609.     "", /* hwfc_str */
  610.     "", /* swfc_str */
  611.     "", /* nofc_str */
  612.     "", /* ec_on_str */
  613.     "", /* ec_off_str */
  614.     "", /* dc_on_str */
  615.     "", /* dc_off_str */
  616.     "", /* aa_on_str */
  617.     "", /* aa_off_str */
  618.     "", /* sb_on_str */
  619.     "", /* sb_off_str */
  620.     "", /* sp_off_str */
  621.     "", /* sp_on_str */
  622.     "", /* vol1_str */
  623.     "", /* vol2_str */
  624.     "", /* vol3_str */
  625.     "", /* ignoredt */
  626.     "", /* ini2 */
  627.     0L, /* max_speed */
  628.     0, /* capas */
  629.     NULL /* ok_fn */
  630. };
  631. static
  632. MDMINF ATTMODEM = /* information for AT&T switched-network modems */
  633. /* "Number" following "dial" can include: p's and
  634.  * t's to indicate pulse or tone (default) dialing,
  635.  * + for wait for dial tone, , for pause, r for
  636.  * last number dialed, and, except for 2224B, some
  637.  * comma-delimited options like o12=y, before number.
  638.  * "Important" options for the modems:
  639.  *
  640.  * All: Except for 2224B, enable option 12 for "transparent
  641.  * data," o12=y.  If a computer port used for both
  642.  * incoming and outgoing calls is connected to the
  643.  * modem, disable "enter interactive mode on carriage
  644.  * return," EICR.  The Kermit "dial" command can
  645.  * function with EIA leads standard, EIAS.
  646.  *
  647.  * 2212C: Internal hardware switches at their default
  648.  * positions (four rockers down away from numbers)
  649.  * unless EICR is not wanted (rocker down at the 4).
  650.  * For EIAS, rocker down at the 1.
  651.  *
  652.  * 2224B: Front-panel switch position 1 must be up (at the 1,
  653.  * closed).  Disable EICR with position 2 down.
  654.  * For EIAS, position 4 down.
  655.  * All switches on the back panel down.
  656.  *
  657.  * 2224CEO: All front-panel switches down except either 5 or 6.
  658.  * Enable interactive flow control with o16=y.
  659.  * Select normal asynchronous mode with o34=0 (zero).
  660.  * Disable EICR with position 3 up.  For EIAS, 1 up.
  661.  * Reset the modem after changing switches.
  662.  *
  663.  * 2296A: If option 00 (zeros) is present, use o00=0.
  664.  * Enable interactive flow control with o16=y.
  665.  * Select normal asynchronous mode with o34=0 (zero).
  666.  *                      (available in Microcom Networking version, but
  667.  *                      not necessarily other models of the 2296A).
  668.  * Enable modem-port flow control (if available) with
  669.  *  o42=y.  Enable asynchronous operation with o50=y.
  670.  *  Disable EICR with o69=n.  For EIAS, o66=n, using
  671.  *  front panel.
  672.  */
  673.     {
  674.    "AT&T switched-network modems",
  675.     "", /* pulse command */
  676.     "", /* tone command */
  677.     20, /* dial_time */
  678.     ",", /* pause_chars */
  679.     2, /* pause_time */
  680.     "+", /* wake_str */
  681.     0, /* wake_rate */
  682.     "", /* wake_prompt */
  683.     "", /* dmode_str */
  684.     "", /* dmode_prompt */
  685.     "at%s15", /* dial_str */
  686.     0, /* dial_rate */
  687.     0, /* esc_time */
  688.     0, /* esc_char */
  689.     "", /* hup_str */
  690.     "", /* hwfc_str */
  691.     "", /* swfc_str */
  692.     "", /* nofc_str */
  693.     "", /* ec_on_str */
  694.     "", /* ec_off_str */
  695.     "", /* dc_on_str */
  696.     "", /* dc_off_str */
  697.     "", /* aa_on_str */
  698.     "", /* aa_off_str */
  699.     "", /* sb_on_str */
  700.     "", /* sb_off_str */
  701.     "", /* sp_off_str */
  702.     "", /* sp_on_str */
  703.     "", /* vol1_str */
  704.     "", /* vol2_str */
  705.     "", /* vol3_str */
  706.     "", /* ignoredt */
  707.     "", /* ini2 */
  708.     0L, /* max_speed */
  709.     CKD_AT, /* capas */
  710.     NULL /* ok_fn */
  711. };
  712. static
  713. MDMINF ATTDTDM = /* AT&T Digital Terminal Data Module  */
  714.  /* For dialing: KYBD switch down, others usually up. */
  715.     {
  716.     "AT&T Digital Terminal Data Module",
  717.     "", /* pulse command */
  718.     "", /* tone command */
  719.     20, /* dial_time */
  720.     "", /* pause_chars */
  721.     0, /* pause_time */
  722.     "", /* wake_str */
  723.     0, /* wake_rate */
  724.     "", /* wake_prompt */
  725.     "", /* dmode_str */
  726.     "", /* dmode_prompt */
  727.     "%s15", /* dial_str */
  728.     0, /* dial_rate */
  729.     0, /* esc_time */
  730.     0, /* esc_char */
  731.     "", /* hup_str */
  732.     "", /* hwfc_str */
  733.     "", /* swfc_str */
  734.     "", /* nofc_str */
  735.     "", /* ec_on_str */
  736.     "", /* ec_off_str */
  737.     "", /* dc_on_str */
  738.     "", /* dc_off_str */
  739.     "", /* aa_on_str */
  740.     "", /* aa_off_str */
  741.     "", /* sb_on_str */
  742.     "", /* sb_off_str */
  743.     "", /* sp_off_str */
  744.     "", /* sp_on_str */
  745.     "", /* vol1_str */
  746.     "", /* vol2_str */
  747.     "", /* vol3_str */
  748.     "", /* ignoredt */
  749.     "", /* ini2 */
  750.     0L, /* max_speed */
  751.     0, /* capas */
  752.     NULL /* ok_fn */
  753. };
  754. static
  755. MDMINF DIGITEL =        /* Digitel DT-22 CCITT variant used in Brazil */
  756. /*
  757.   Attempts to adhere strictly to the V.25bis specification do not produce good
  758.   results in real life.  The modem for which this code was developed: (a)
  759.   ignores parity; (b) sometimes terminates responses with LF CR instead of CR
  760.   LF; (c) has a Hayes-like escape sequence; (d) supports a hangup ("HUP")
  761.   command.  Information from Fernando Cabral in Brasilia.
  762. */
  763.     {
  764.     "Digitel DT-22 CCITT dialer",
  765.     "", /* pulse command */
  766.     "", /* tone command */
  767.     40, /* dial_time -- programmable -- */
  768.     ",:", /* pause_chars -- "," waits for programmable time */
  769.                         /* ":" waits for dial tone */
  770.     10, /* pause_time (seconds, just a guess) */
  771.     "HUP15",          /* wake_str (Not Standard CCITT) */
  772.     200, /* wake_rate (msec) */
  773.     "VAL", /* wake_prompt */
  774.     "", /* dmode_str (none) */
  775.     "", /* dmode_prompt (none) */
  776.     "CRN%s15",        /* dial_str */
  777.     200, /* dial_rate (msec) */
  778.     1100, /* esc_time (Not Standard CCITT) */
  779.     43, /* esc_char  (Not Standard CCITT) */
  780.     "HUP15", /* hup_str  (Not Standard CCITT) */
  781.     "", /* hwfc_str */
  782.     "", /* swfc_str */
  783.     "", /* nofc_str */
  784.     "", /* ec_on_str */
  785.     "", /* ec_off_str */
  786.     "", /* dc_on_str */
  787.     "", /* dc_off_str */
  788.     "CIC15", /* aa_on_str */
  789.     "DIC15", /* aa_off_str */
  790.     "", /* sb_on_str */
  791.     "", /* sb_off_str */
  792.     "", /* sp_off_str */
  793.     "", /* sp_on_str */
  794.     "", /* vol1_str */
  795.     "", /* vol2_str */
  796.     "", /* vol3_str */
  797.     "", /* ignoredt */
  798.     "", /* ini2 */
  799.     0L, /* max_speed */
  800.     CKD_V25, /* capas */
  801.     getok /* ok_fn */
  802. };
  803. static
  804. MDMINF H_1200 = /* Hayes 1200 and compatible modems */
  805.     {
  806.     "Hayes Smartmodem 1200 and compatibles",
  807.     "ATP15", /* pulse command */
  808.     "ATT15", /* tone command */
  809.     35, /* dial_time */
  810.     ",", /* pause_chars */
  811.     2, /* pause_time */
  812. #ifdef OS2
  813.     "ATE1Q0V115", /* wake_str */
  814. #else
  815.     "ATQ015", /* wake_str */
  816. #endif /* OS2 */
  817.     0, /* wake_rate */
  818.     "OK15", /* wake_prompt */
  819.     "", /* dmode_str */
  820.     "", /* dmode_prompt */
  821.     "ATD%s15", /* dial_str */
  822.     0, /* dial_rate */
  823.     1100, /* esc_time */
  824.     43, /* esc_char */
  825.     "ATQ0H015", /* hup_str */
  826.     "", /* hwfc_str */
  827.     "", /* swfc_str */
  828.     "", /* nofc_str */
  829.     "", /* ec_on_str */
  830.     "", /* ec_off_str */
  831.     "", /* dc_on_str */
  832.     "", /* dc_off_str */
  833.     "ATS0=115", /* aa_on_str */
  834.     "ATS0=015", /* aa_off_str */
  835.     "", /* sb_on_str */
  836.     "", /* sb_off_str */
  837.     "ATM115", /* sp_on_str */
  838.     "ATM015", /* sp_off_str */
  839.     "ATL115", /* vol1_str */
  840.     "ATL215", /* vol2_str */
  841.     "ATL315", /* vol3_str */
  842.     "", /* ignoredt */
  843.     "", /* ini2 */
  844.     1200L, /* max_speed */
  845.     CKD_AT, /* capas */
  846.     getok /* ok_fn */
  847. };
  848. static
  849. MDMINF H_ULTRA = /* Hayes high-speed */
  850.     {
  851.     "Hayes Ultra/Optima/Accura 96/144/288", /* U,O,A */
  852.     "ATP15", /* pulse command */
  853.     "ATT15", /* tone command */
  854.     35, /* dial_time */
  855.     ",", /* pause_chars */
  856.     2, /* pause_time */
  857. #ifdef OS2
  858.     "ATE1Q0V1X4N1Y0&S0&C1&D2S37=0S82=12815", /* wake_str */
  859. #else
  860. #ifdef VMS
  861.     "ATQ0X4N1Y0&S1S37=0S82=12815", /* wake_str */
  862. #else
  863.     "ATQ0X4N1Y0S37=0S82=12815", /* wake_str */
  864. #endif /* VMS */
  865. #endif /* OS2 */
  866.     0, /* wake_rate */
  867.     "OK15", /* wake_prompt */
  868.     "", /* dmode_str */
  869.     "", /* dmode_prompt */
  870.     "ATD%s15", /* dial_str */
  871.     0, /* dial_rate */
  872.     1100, /* esc_time */
  873.     43, /* esc_char */
  874.     "ATQ0H015", /* hup_str */
  875.     "AT&K315", /* hwfc_str */   /* OK for U,O */
  876.     "AT&K415", /* swfc_str */   /* OK for U,O */
  877.     "AT&K015", /* nofc_str */   /* OK for U,O */
  878.     "AT&Q5S36=7S48=715", /* ec_on_str */  /* OK for U,O */
  879.     "AT&Q015", /* ec_off_str */ /* OK for U,O */
  880.     "ATS46=215", /* dc_on_str */
  881.     "ATS46=015", /* dc_off_str */
  882.     "ATS0=115", /* aa_on_str */
  883.     "ATS0=015", /* aa_off_str */
  884.     "", /* sb_on_str */
  885.     "", /* sb_off_str */
  886.     "ATM115", /* sp_on_str */
  887.     "ATM015", /* sp_off_str */
  888.     "ATL115", /* vol1_str */
  889.     "ATL215", /* vol2_str */
  890.     "ATL315", /* vol3_str */
  891.     "ATX315", /* ignoredt */
  892.     "", /* ini2 */
  893.     115200L, /* max_speed */  /* (varies) */
  894.     CKD_AT|CKD_SB|CKD_EC|CKD_DC|CKD_HW|CKD_SW, /* capas */
  895.     getok /* ok_fn */
  896. };
  897. static
  898. MDMINF H_ACCURA = /* Hayes Accura */
  899.     { /* GUESSING IT'S LIKE ULTRA & OPTIMA */
  900.     "Hayes Accura",
  901.     "ATP15", /* pulse command */
  902.     "ATT15", /* tone command */
  903.     35, /* dial_time */
  904.     ",", /* pause_chars */
  905.     2, /* pause_time */
  906. #ifdef OS2
  907.     "ATE1Q0V1X4N1Y0&S0&C1&D2S37=015", /* wake_str */
  908. #else
  909. #ifdef VMS
  910.     "ATQ0X4N1Y0&S1S37=015", /* wake_str */
  911. #else
  912.     "ATQ0X4N1Y0S37=015", /* wake_str */
  913. #endif /* VMS */
  914. #endif /* OS2 */
  915.     0, /* wake_rate */
  916.     "OK15", /* wake_prompt */
  917.     "", /* dmode_str */
  918.     "", /* dmode_prompt */
  919.     "ATD%s15", /* dial_str */
  920.     0, /* dial_rate */
  921.     1100, /* esc_time */
  922.     43, /* esc_char */
  923.     "ATQ0H015", /* hup_str */
  924.     "AT&K315", /* hwfc_str */
  925.     "AT&K415", /* swfc_str */
  926.     "AT&K015", /* nofc_str */
  927.     "AT&Q5S36=7S48=715", /* ec_on_str */
  928.     "AT&Q015", /* ec_off_str */
  929.     "ATS46=215", /* dc_on_str */
  930.     "ATS46=015", /* dc_off_str */
  931.     "ATS0=115", /* aa_on_str */
  932.     "ATS0=015", /* aa_off_str */
  933.     "", /* sb_on_str */
  934.     "", /* sb_off_str */
  935.     "ATM115", /* sp_on_str */
  936.     "ATM015", /* sp_off_str */
  937.     "ATL115", /* vol1_str */
  938.     "ATL215", /* vol2_str */
  939.     "ATL315", /* vol3_str */
  940.     "ATX315", /* ignoredt */
  941.     "", /* ini2 */
  942.     115200L, /* max_speed */  /* (varies) */
  943.     CKD_AT|CKD_SB|CKD_EC|CKD_DC|CKD_HW|CKD_SW, /* capas */
  944.     getok /* ok_fn */
  945. };
  946. static
  947. MDMINF PPI = /* Practical Peripherals  */
  948.     {
  949.     "Practical Peripherals V.22bis or higher with V.42 and V.42bis",
  950.     "ATP15", /* pulse command */
  951.     "ATT15", /* tone command */
  952.     35, /* dial_time */
  953.     ",", /* pause_chars */
  954.     2, /* pause_time */
  955. #ifdef COMMENT
  956. /* In newer models S82 (BREAK handling) was eliminated, causing an error. */
  957. #ifdef OS2
  958.     "ATQ0X4N1&S0&C1&D2S37=0S82=12815", /* wake_str */
  959. #else
  960.     "ATQ0X4N1S37=0S82=12815", /* wake_str */
  961. #endif /* OS2 */
  962. #else /* So now we use Y0 instead */
  963. #ifdef OS2
  964.     "ATE1Q0V1X4N1&S0&C1&D2Y0S37=015", /* wake_str */
  965. #else
  966. #ifdef VMS
  967.     "ATQ0X4N1Y0&S1S37=015", /* wake_str */
  968. #else
  969.     "ATQ0X4N1Y0S37=015", /* wake_str */
  970. #endif /* VMS */
  971. #endif /* OS2 */
  972. #endif /* COMMENT */
  973.     0, /* wake_rate */
  974.     "OK15", /* wake_prompt */
  975.     "", /* dmode_str */
  976.     "", /* dmode_prompt */
  977.     "ATD%s15", /* dial_str */
  978.     0, /* dial_rate */
  979.     1100, /* esc_time */
  980.     43, /* esc_char */
  981.     "ATQ0H015", /* hup_str */
  982.     "AT&K315", /* hwfc_str */
  983.     "AT&K415", /* swfc_str */
  984.     "AT&K015", /* nofc_str */
  985.     "AT&Q5S36=7S48=715", /* ec_on_str */
  986.     "AT&Q0S36=0S48=12815", /* ec_off_str */
  987.     "ATS46=215", /* dc_on_str */
  988.     "ATS46=015", /* dc_off_str */
  989.     "ATS0=115", /* aa_on_str */
  990.     "ATS0=015", /* aa_off_str */
  991.     "", /* sb_on_str  */
  992.     "", /* sb_off_str  */
  993.     "ATM115", /* sp_on_str */
  994.     "ATM015", /* sp_off_str */
  995.     "ATL115", /* vol1_str */
  996.     "ATL215", /* vol2_str */
  997.     "ATL315", /* vol3_str */
  998.     "ATX315", /* ignoredt */
  999.     "", /* ini2 */
  1000.     115200L, /* max_speed */
  1001.     CKD_AT|CKD_SB|CKD_EC|CKD_DC|CKD_HW|CKD_SW, /* capas */
  1002.     getok /* ok_fn */
  1003. };
  1004. static
  1005. MDMINF DATAPORT = /* AT&T Dataport  */
  1006.     {
  1007.     "AT&T / Paradyne DataPort V.32 or higher",
  1008.     "ATP15", /* pulse command */
  1009.     "ATT15", /* tone command */
  1010.     35, /* dial_time */
  1011.     ",", /* pause_chars */
  1012.     2, /* pause_time */
  1013.     /*
  1014.        Note: S41=0 (use highest modulation) omitted, since it is not
  1015.        supported on the V.32 and lower models.  So let's not touch it.
  1016.     */
  1017. #ifdef OS2
  1018.     "ATQ0E1V1X6&S0&C1&D2&Q0S78=015", /* wake_str */
  1019. #else
  1020. #ifdef VMS
  1021.     "ATQ0E1X6&S1&Q0S78=015", /* wake_str */
  1022. #else
  1023.     "ATQ0E1X6&Q0S78=015", /* wake_str */
  1024. #endif /* VMS */
  1025. #endif /* OS2 */
  1026.     0, /* wake_rate */
  1027.     "OK15", /* wake_prompt */
  1028.     "", /* dmode_str */
  1029.     "", /* dmode_prompt */
  1030.     "ATD%s15", /* dial_str */
  1031.     0, /* dial_rate */
  1032.     1100, /* esc_time */
  1033.     43, /* esc_char */
  1034.     "ATQ0H015", /* hup_str */
  1035.     "AT\Q315", /* hwfc_str */
  1036.     "AT\Q1\X015", /* swfc_str */
  1037.     "AT\Q015", /* nofc_str */
  1038.     "AT\N715", /* ec_on_str */
  1039.     "AT\N015", /* ec_off_str */
  1040.     "AT%C115", /* dc_on_str */
  1041.     "AT%C015", /* dc_off_str */
  1042.     "ATS0=115", /* aa_on_str */
  1043.     "ATS0=015", /* aa_off_str */
  1044.     "", /* sb_on_str */
  1045.     "", /* sb_off_str */
  1046.     "ATM115", /* sp_on_str */
  1047.     "ATM015", /* sp_off_str */
  1048.     "ATL115", /* vol1_str */
  1049.     "ATL215", /* vol2_str */
  1050.     "ATL315", /* vol3_str */
  1051.     "ATX315", /* ignoredt */
  1052.     "", /* ini2 */
  1053.     57600L, /* max_speed */
  1054.     CKD_AT|CKD_SB|CKD_EC|CKD_DC|CKD_HW|CKD_SW, /* capas */
  1055.     getok /* ok_fn */
  1056. };
  1057. static
  1058. MDMINF UCOM_AT = /* Microcom DeskPorte FAST ES 28.8 */
  1059.     {
  1060.     "Microcom DeskPorte FAST 28.8",
  1061.     "ATP15", /* pulse command */
  1062.     "ATT15", /* tone command */
  1063.     35, /* dial_time */
  1064.     ",", /* pause_chars */
  1065.     2, /* pause_time */
  1066. #ifdef OS2
  1067.     "ATE1Q0V1X4\N0F0&S0&C1&D2\K515", /* wake_str */
  1068. #else
  1069. #ifdef VMS
  1070.     "ATQ0X4F0&S1\K515", /* wake_str */
  1071. #else
  1072.     "ATQ0X4F0\K515", /* wake_str */
  1073. #endif /* VMS */
  1074. #endif /* OS2 */
  1075.     0, /* wake_rate */
  1076.     "OK15", /* wake_prompt */
  1077.     "", /* dmode_str */
  1078.     "", /* dmode_prompt */
  1079.     "ATD%s15", /* dial_str */
  1080.     0, /* dial_rate */
  1081.     1100, /* esc_time */
  1082.     43, /* esc_char */
  1083.     "ATQ0H015", /* hup_str */
  1084.     "AT\Q315", /* hwfc_str */
  1085.     "AT\Q115", /* swfc_str */
  1086.     "AT\H0\Q015", /* nofc_str */
  1087.     "AT\N315", /* ec_on_str */
  1088.     "AT\N015", /* ec_off_str */
  1089.     "AT%C315", /* dc_on_str */
  1090.     "AT%C015", /* dc_off_str */
  1091.     "ATS0=115", /* aa_on_str */
  1092.     "ATS0=015", /* aa_off_str */
  1093.     "AT-J015", /* sb_on_str */
  1094.     "AT-J115", /* sb_off_str */
  1095.     "ATM115", /* sp_on_str */
  1096.     "ATM015", /* sp_off_str */
  1097.     "ATL115", /* vol1_str */
  1098.     "ATL215", /* vol2_str */
  1099.     "ATL315", /* vol3_str */
  1100.     "ATX315", /* ignoredt */
  1101.     "", /* ini2 */
  1102.     115200L, /* max_speed */
  1103.     CKD_AT|CKD_SB|CKD_EC|CKD_DC|CKD_HW|CKD_SW, /* capas */
  1104.     getok /* ok_fn */
  1105. };
  1106. static
  1107. MDMINF ZOOM = /* Zoom Telephonics V.32bis  */
  1108.     {
  1109.     "Zoom Telephonics V.32bis",
  1110.     "ATP15", /* pulse command */
  1111.     "ATT15", /* tone command */
  1112.     35, /* dial_time */
  1113.     ",", /* pause_chars */
  1114.     2, /* pause_time */
  1115. #ifdef OS2
  1116.     "ATE1Q0V1N1W1X4&S0&C1&D2S82=128S95=4715", /* wake_str */
  1117. #else
  1118. #ifdef VMS
  1119.     "ATQ0E1N1W1X4&S1S82=128S95=4715", /* wake_str */
  1120. #else
  1121.     "ATQ0E1N1W1X4S82=128S95=4715", /* wake_str */
  1122. #endif /* VMS */
  1123. #endif /* OS2 */
  1124.     0, /* wake_rate */
  1125.     "OK15", /* wake_prompt */
  1126.     "", /* dmode_str */
  1127.     "", /* dmode_prompt */
  1128.     "ATD%s15", /* dial_str */
  1129.     0, /* dial_rate */
  1130.     1100, /* esc_time */
  1131.     43, /* esc_char */
  1132.     "ATQ0H015", /* hup_str */
  1133.     "AT&K315", /* hwfc_str */
  1134.     "AT&K415", /* swfc_str */
  1135.     "AT&K015", /* nofc_str */
  1136.     "AT&Q5S36=7S48=715", /* ec_on_str */
  1137.     "AT&Q015", /* ec_off_str */
  1138.     "ATS46=13815", /* dc_on_str */
  1139.     "ATS46=13615", /* dc_off_str */
  1140.     "ATS0=115", /* aa_on_str */
  1141.     "ATS0=015", /* aa_off_str */
  1142.     "", /* sb_on_str */
  1143.     "", /* sb_off_str */
  1144.     "ATM115", /* sp_on_str */
  1145.     "ATM015", /* sp_off_str */
  1146.     "ATL115", /* vol1_str */
  1147.     "ATL215", /* vol2_str */
  1148.     "ATL315", /* vol3_str */
  1149.     "ATX315", /* ignoredt */
  1150.     "", /* ini2 */
  1151.     57600L, /* max_speed */
  1152.     CKD_AT|CKD_SB|CKD_EC|CKD_DC|CKD_HW|CKD_SW, /* capas */
  1153.     getok /* ok_fn */
  1154. };
  1155. static
  1156. MDMINF ZYXEL = /* ZyXEL U-Series */
  1157.     {
  1158.     "ZyXEL U-Series V.32bis or higher",
  1159.     "ATP15", /* pulse command */
  1160.     "ATT15", /* tone command */
  1161.     35, /* dial_time */
  1162.     ",", /* pause_chars */
  1163.     2, /* pause_time */
  1164. #ifdef OS2
  1165.     "ATE1Q0V1&S0&C1&D2&N0X5&Y115", /* wake_str */
  1166. #else
  1167. #ifdef VMS
  1168.     "ATQ0E1&S1&N0X5&Y115", /* wake_str */
  1169. #else
  1170.     "ATQ0E1&N0X5&Y115", /* wake_str */
  1171. #endif /* VMS */
  1172. #endif /* OS2 */
  1173.     0, /* wake_rate */
  1174.     "OK15", /* wake_prompt */
  1175.     "", /* dmode_str */
  1176.     "", /* dmode_prompt */
  1177.     "ATD%s15", /* dial_str */
  1178.     0, /* dial_rate */
  1179.     1100, /* esc_time */
  1180.     43, /* esc_char */
  1181.     "ATQ0H015", /* hup_str */
  1182.     "AT&H315", /* hwfc_str */
  1183.     "AT&H415", /* swfc_str */
  1184.     "AT&H015", /* nofc_str */
  1185.     "AT&K315", /* ec_on_str */
  1186.     "AT&K015", /* ec_off_str */
  1187.     "AT&K415", /* dc_on_str */
  1188.     "AT&K315", /* dc_off_str */
  1189.     "ATS0=115", /* aa_on_str */
  1190.     "ATS0=015", /* aa_off_str */
  1191.     "", /* sb_on_str */
  1192.     "", /* sb_off_str */
  1193.     "ATM115", /* sp_on_str */
  1194.     "ATM015", /* sp_off_str */
  1195.     "ATL115", /* vol1_str */
  1196.     "ATL215", /* vol2_str */
  1197.     "ATL315", /* vol3_str */
  1198.     "ATX315", /* ignoredt */
  1199.     "", /* ini2 */
  1200.     57600L, /* max_speed */
  1201.     CKD_AT|CKD_SB|CKD_EC|CKD_DC|CKD_HW|CKD_SW, /* capas */
  1202.     getok /* ok_fn */
  1203. };
  1204. static
  1205. MDMINF ZOLTRIX = /* Zoltrix */
  1206.     {
  1207.     "Zoltrix V.32bis and V.34 modems with Rockwell ACI chipset",
  1208.     "ATP15", /* pulse command */
  1209.     "ATT15", /* tone command */
  1210.     35, /* dial_time */
  1211.     ",", /* pause_chars */
  1212.     2, /* pause_time */
  1213. #ifdef OS2
  1214.    "ATE1Q0V1F0W1X4Y0&S0&C1&D2\K5S82=128S95=4115", /* wake_str */
  1215. #else
  1216. #ifdef VMS
  1217.    "ATQ0E1F0W1X4Y0&S1\K5S82=128S95=4115", /* wake_str */
  1218. #else
  1219.    "ATQ0E1F0W1X4Y0\K5S82=128S95=4115", /* wake_str */
  1220. #endif /* VMS */
  1221. #endif /* OS2 */
  1222.     0, /* wake_rate */
  1223.     "OK15", /* wake_prompt */
  1224.     "", /* dmode_str */
  1225.     "", /* dmode_prompt */
  1226.     "ATD%s15", /* dial_str */
  1227.     0, /* dial_rate */
  1228.     1100, /* esc_time */
  1229.     43, /* esc_char */
  1230.     "ATQ0H015", /* hup_str */
  1231.     "AT&K315", /* hwfc_str */
  1232.     "AT&K4S32=17S33=1915", /* swfc_str */
  1233.     "AT&K015", /* nofc_str */
  1234.     "AT\N315", /* ec_on_str */
  1235.     "AT\N115", /* ec_off_str */
  1236.     "ATS46=138%C315", /* dc_on_str */
  1237.     "ATS46=136%C015", /* dc_off_str */
  1238.     "ATS0=115", /* aa_on_str */
  1239.     "ATS0=015", /* aa_off_str */
  1240.     "AT\N015", /* sb_on_str */
  1241.     "AT&Q015", /* sb_off_str */
  1242.     "ATM115", /* sp_on_str */
  1243.     "ATM015", /* sp_off_str */
  1244.     "ATL115", /* vol1_str */
  1245.     "ATL215", /* vol2_str */
  1246.     "ATL315", /* vol3_str */
  1247.     "ATX315", /* ignoredt */
  1248.     "", /* ini2 */
  1249.     57600L, /* max_speed */
  1250.     CKD_AT|CKD_SB|CKD_EC|CKD_DC|CKD_HW|CKD_SW, /* capas */
  1251.     getok /* ok_fn */
  1252. };
  1253. static
  1254. MDMINF MOTOROLA = { /* Motorola FasTalk II or Lifestyle */
  1255. /*
  1256.   "E" and "X" commands removed - Motorola Lifestyle doesn't have them.
  1257.      E0 = Don't echo while online
  1258.      X0 = Process Xon/Xoff but don't pass through
  1259. */
  1260.     "Motorola FasTalk II or Lifestyle", /* Name */
  1261.     "ATP15", /* pulse command */
  1262.     "ATT15", /* tone command */
  1263.     35, /* dial_time */
  1264.     ",", /* pause_chars */
  1265.     2, /* pause_time */
  1266. #ifdef OS2
  1267.     "ATE1Q0V1X4&S0&C1&D2\K5\V115", /* wake_str */
  1268. #else
  1269. #ifdef VMS
  1270.     "ATQ0E1X4&S1\K5\V115", /* wake_str */
  1271. #else
  1272.     "ATQ0E1X4\K5\V115", /* wake_str */
  1273. #endif /* VMS */
  1274. #endif /* OS2 */
  1275.     0, /* wake_rate */
  1276.     "OK15", /* wake_prompt */
  1277.     "", /* dmode_str */
  1278.     "", /* dmode_prompt */
  1279.     "ATD%s15", /* dial_str */
  1280.     0, /* dial_rate */
  1281.     1100, /* esc_time */
  1282.     43, /* esc_char */
  1283.     "ATQ0H015", /* hup_str */
  1284.     "AT\Q315", /* hwfc_str */
  1285.     "AT\Q115", /* swfc_str */
  1286.     "AT\Q015", /* nofc_str */
  1287.     "AT\N615", /* ec_on_str */
  1288.     "AT\N115", /* ec_off_str */
  1289.     "AT%C115", /* dc_on_str */
  1290.     "AT%C015", /* dc_off_str */
  1291.     "ATS0=115", /* aa_on_str */
  1292.     "ATS0=015", /* aa_off_str */
  1293.     "AT\J015", /* sb_on_str */
  1294.     "AT\J115", /* sb_off_str */
  1295.     "ATM115", /* sp_on_str */
  1296.     "ATM015", /* sp_off_str */
  1297.     "ATL115", /* vol1_str */
  1298.     "ATL215", /* vol2_str */
  1299.     "ATL315", /* vol3_str */
  1300.     "ATX315", /* ignoredt */
  1301.     "", /* ini2 */
  1302.     57600L, /* max_speed */
  1303.     CKD_AT|CKD_SB|CKD_EC|CKD_DC|CKD_HW|CKD_SW, /* capas */
  1304.     getok /* ok_fn */
  1305. };
  1306. static
  1307. MDMINF BOCA = /* Boca */
  1308.     {
  1309.     "BOCA 14.4 Faxmodem",
  1310.     "ATP15", /* pulse command */
  1311.     "ATT15", /* tone command */
  1312.     35, /* dial_time */
  1313.     ",", /* pause_chars */
  1314.     2, /* pause_time */
  1315. #ifdef OS2
  1316.     "ATE1Q0V1F1N1W1&S0&C1&D2\K5S37=11S82=128S95=47X415", /* wake_str */
  1317. #else
  1318. #ifdef VMS
  1319.     "ATQ0E1F1N1W1&S1\K5S37=11S82=128S95=47X415", /* wake_str */
  1320. #else
  1321.     "ATQ0E1F1N1W1\K5S37=11S82=128S95=47X415", /* wake_str */
  1322. #endif /* VMS */
  1323. #endif /* OS2 */
  1324.     0, /* wake_rate */
  1325.     "OK15", /* wake_prompt */
  1326.     "", /* dmode_str */
  1327.     "", /* dmode_prompt */
  1328.     "ATD%s15", /* dial_str */
  1329.     0, /* dial_rate */
  1330.     1100, /* esc_time */
  1331.     43, /* esc_char */
  1332.     "ATQ0H015", /* hup_str */
  1333.     "AT&K315", /* hwfc_str */
  1334.     "AT&K415", /* swfc_str */
  1335.     "AT&K015", /* nofc_str */
  1336.     "AT\N3S36=7S48=715", /* ec_on_str */
  1337.     "AT\N115", /* ec_off_str */
  1338.     "ATS46=13815", /* dc_on_str */
  1339.     "ATS46=13615", /* dc_off_str */
  1340.     "ATS0=115", /* aa_on_str */
  1341.     "ATS0=015", /* aa_off_str */
  1342.     "", /* sb_on_str */
  1343.     "", /* sb_off_str */
  1344.     "ATM115", /* sp_on_str */
  1345.     "ATM015", /* sp_off_str */
  1346.     "ATL115", /* vol1_str */
  1347.     "ATL215", /* vol2_str */
  1348.     "ATL315", /* vol3_str */
  1349.     "ATX315", /* ignoredt */
  1350.     "", /* ini2 */
  1351.     57600L, /* max_speed */
  1352.     CKD_AT|CKD_SB|CKD_EC|CKD_DC|CKD_HW|CKD_SW, /* capas */
  1353.     getok /* ok_fn */
  1354. };
  1355. static
  1356. MDMINF INTEL = /* Intel */
  1357.     {
  1358.     "Intel High-Speed Faxmodem",
  1359.     "ATP15", /* pulse command */
  1360.     "ATT15", /* tone command */
  1361.     35, /* dial_time */
  1362.     ",", /* pause_chars */
  1363.     2, /* pause_time */
  1364. #ifdef OS2
  1365.     "ATE1Q0V1Y0X4&S0&C1&D2\K1\V2S25=5015", /* wake_str */
  1366. #else
  1367. #ifdef VMS
  1368.     "ATQ0E1Y0X4&S1\K1\V2S25=5015", /* wake_str */
  1369. #else
  1370.     "ATQ0E1Y0X4\K1\V2S25=5015", /* wake_str */
  1371. #endif /* VMS */
  1372. #endif /* OS2 */
  1373.     0, /* wake_rate */
  1374.     "OK15", /* wake_prompt */
  1375.     "ATB1+FCLASS=015", /* dmode_str */
  1376.     "OK15", /* dmode_prompt */
  1377.     "ATD%s15", /* dial_str */
  1378.     0, /* dial_rate */
  1379.     1100, /* esc_time */
  1380.     43, /* esc_char */
  1381.     "ATQ0H015", /* hup_str */
  1382.     "AT\G1\Q315", /* hwfc_str */
  1383.     "AT\G1\Q1\X015", /* swfc_str */
  1384.     "AT\G015", /* nofc_str */
  1385.     "AT\J0\N3"H315", /* ec_on_str */
  1386.     "AT\N115", /* ec_off_str */
  1387.     "AT%C115", /* dc_on_str */
  1388.     "AT%C015", /* dc_off_str */
  1389.     "ATS0=115", /* aa_on_str */
  1390.     "ATS0=015", /* aa_off_str */
  1391.     "", /* sb_on_str */
  1392.     "", /* sb_off_str */
  1393.     "ATM115", /* sp_on_str */
  1394.     "ATM015", /* sp_off_str */
  1395.     "ATL115", /* vol1_str */
  1396.     "ATL215", /* vol2_str */
  1397.     "ATL315", /* vol3_str */
  1398.     "ATX315", /* ignoredt */
  1399.     "", /* ini2 */
  1400.     57600L, /* max_speed */
  1401.     CKD_AT|CKD_SB|CKD_EC|CKD_DC|CKD_HW|CKD_SW, /* capas */
  1402.     getok /* ok_fn */
  1403. };
  1404. static
  1405. MDMINF MULTITECH = /* Multitech */
  1406.     {
  1407.     "Multitech MT1432 or MT2834 Series",
  1408.     "ATP15", /* pulse command */
  1409.     "ATT15", /* tone command */
  1410.     35, /* dial_time */
  1411.     ",", /* pause_chars */
  1412.     2, /* pause_time */
  1413. /* #P0 (= no parity) is not listed in the manual for newer models */
  1414. /* so it has been removed from all three copies of the Multitech wake_str */
  1415. #ifdef OS2
  1416.     "ATE1Q0V1X4&S0&C1&D2&E8&Q0%E115", /* wake_str */
  1417. #else
  1418. #ifdef VMS
  1419.     "ATQ0E1X4&S1&E8&Q0%E115", /* wake_str */
  1420. #else
  1421.     "ATQ0E1X4&E8&Q0%E115", /* wake_str */
  1422. #endif /* VMS */
  1423. #endif /* OS2 */
  1424.     0, /* wake_rate */
  1425.     "OK15", /* wake_prompt */
  1426.     "", /* dmode_str */
  1427.     "", /* dmode_prompt */
  1428.     "ATD%s15", /* dial_str */
  1429.     0, /* dial_rate */
  1430.     1100, /* esc_time */
  1431.     43, /* esc_char */
  1432.     "ATQ0H015", /* hup_str */
  1433.     "AT&E4&E7&E8&E11&E1315", /* hwfc_str */
  1434.     "AT&E5&E6&E8&E11&E1315", /* swfc_str */
  1435.     "AT&E3&E7&E8&E10&E1215", /* nofc_str */
  1436.     "AT&E115", /* ec_on_str */
  1437.     "AT#L0&E015", /* ec_off_str */
  1438.     "AT&E1515", /* dc_on_str */
  1439.     "AT&E1415", /* dc_off_str */
  1440.     "ATS0=115", /* aa_on_str */
  1441.     "ATS0=015", /* aa_off_str */
  1442.     "AT$BA015", /* sb_on_str (= "baud adjust off") */
  1443.     "AT$BA115", /* sb_off_str */
  1444.     "ATM115", /* sp_on_str */
  1445.     "ATM015", /* sp_off_str */
  1446.     "ATL115", /* vol1_str */
  1447.     "ATL215", /* vol2_str */
  1448.     "ATL315", /* vol3_str */
  1449.     "ATX315", /* ignoredt */
  1450.     "", /* ini2 */
  1451.     57600L, /* max_speed */
  1452.     CKD_AT|CKD_SB|CKD_EC|CKD_DC|CKD_HW|CKD_SW, /* capas */
  1453.     getok /* ok_fn */
  1454. };
  1455. static
  1456. MDMINF SUPRA = /* Supra */
  1457.     {
  1458.     "SupraFAXModem 144 or 288",
  1459.     "ATP15", /* pulse command */
  1460.     "ATT15", /* tone command */
  1461.     35, /* dial_time */
  1462.     ",", /* pause_chars */
  1463.     2, /* pause_time */
  1464. #ifdef OS2
  1465.     "ATQ0E1V1N1W0X4Y0&S0&C1&D2\K5S82=12815", /* wake_str */
  1466. #else
  1467. #ifdef VMS
  1468.     "ATQ0E1N1W0X4Y0&S1\K5S82=12815", /* wake_str */
  1469. #else
  1470.     "ATQ0E1N1W0X4Y0\K5S82=12815", /* wake_str */
  1471. #endif /* VMS */
  1472. #endif /* OS2 */
  1473.     0, /* wake_rate */
  1474.     "OK15", /* wake_prompt */
  1475.     "", /* dmode_str */
  1476.     "", /* dmode_prompt */
  1477.     "ATD%s15", /* dial_str */
  1478.     0, /* dial_rate */
  1479.     1100, /* esc_time */
  1480.     43, /* esc_char */
  1481.     "ATQ0H015", /* hup_str */
  1482.     "AT&K315", /* hwfc_str */
  1483.     "AT&K415", /* swfc_str */
  1484.     "AT&K015", /* nofc_str */
  1485.     "AT&Q5\N3S48=715", /* ec_on_str */
  1486.     "AT&Q0\N115", /* ec_off_str */
  1487.     "AT%C1S46=13815", /* dc_on_str */
  1488.     "AT%C0S46=13615", /* dc_off_str */
  1489.     "ATS0=115", /* aa_on_str */
  1490.     "ATS0=015", /* aa_off_str */
  1491.     "", /* sb_on_str */
  1492.     "", /* sb_off_str */
  1493.     "ATM115", /* sp_on_str */
  1494.     "ATM15", /* sp_off_str */
  1495.     "ATL15", /* vol1_str */
  1496.     "ATL215", /* vol2_str */
  1497.     "ATL315", /* vol3_str */
  1498.     "ATX315", /* ignoredt */
  1499.     "", /* ini2 */
  1500.     57600L, /* max_speed */
  1501.     CKD_AT|CKD_SB|CKD_EC|CKD_DC|CKD_HW|CKD_SW, /* capas */
  1502.     getok /* ok_fn */
  1503. };
  1504. static
  1505. MDMINF SUPRAX = /* Supra Express */
  1506.     {
  1507.     "Diamond Supra Express V.90",
  1508.     "ATP15", /* pulse command */
  1509.     "ATT15", /* tone command */
  1510.     35, /* dial_time */
  1511.     ",", /* pause_chars */
  1512.     2, /* pause_time */
  1513. #ifdef OS2
  1514.     "ATQ0E1V1W0X4&C1&D2&S0\K515", /* wake_str */
  1515. #else
  1516. #ifdef VMS
  1517.     "ATQ0E1W0X4&S1\K515", /* wake_str */
  1518. #else
  1519.     "ATQ0E1W0X4\K515", /* wake_str */
  1520. #endif /* VMS */
  1521. #endif /* OS2 */
  1522.     0, /* wake_rate */
  1523.     "OK15", /* wake_prompt */
  1524.     "", /* dmode_str */
  1525.     "", /* dmode_prompt */
  1526.     "ATD%s15", /* dial_str */
  1527.     0, /* dial_rate */
  1528.     1100, /* esc_time */
  1529.     43, /* esc_char */
  1530.     "ATQ0H015", /* hup_str */
  1531.     "AT&K315", /* hwfc_str */
  1532.     "AT&K415", /* swfc_str */
  1533.     "AT&K015", /* nofc_str */
  1534.     "AT\N315", /* ec_on_str */
  1535.     "AT\N115", /* ec_off_str */
  1536.     "AT%C215", /* dc_on_str */
  1537.     "AT%C015", /* dc_off_str */
  1538.     "ATS0=115", /* aa_on_str */
  1539.     "ATS0=015", /* aa_off_str */
  1540.     "", /* sb_on_str */
  1541.     "", /* sb_off_str */
  1542.     "ATM115", /* sp_on_str */
  1543.     "ATM15", /* sp_off_str */
  1544.     "ATL15", /* vol1_str */
  1545.     "ATL215", /* vol2_str */
  1546.     "ATL315", /* vol3_str */
  1547.     "ATX315", /* ignoredt */
  1548.     "", /* ini2 */
  1549.     230400L, /* max_speed */
  1550.     CKD_AT|CKD_SB|CKD_EC|CKD_DC|CKD_HW|CKD_SW, /* capas */
  1551.     getok /* ok_fn */
  1552. };
  1553. static
  1554. MDMINF MAXTECH = /* MaxTech */
  1555.     {
  1556.     "MaxTech XM288EA or GVC FAXModem",
  1557.     "ATP15", /* pulse command */
  1558.     "ATT15", /* tone command */
  1559.     35, /* dial_time */
  1560.     ",", /* pause_chars */
  1561.     2, /* pause_time */
  1562. #ifdef OS2
  1563.     "ATQ0E1V1X4Y0&S0&C1&D2&L0&M0\K515", /* wake_str */
  1564. #else
  1565. #ifdef VMS
  1566.     "ATQ0E1X4Y0&L0&M0&S1\K515", /* wake_str */
  1567. #else
  1568.     "ATQ0E1X4Y0&L0&M0\K515", /* wake_str */
  1569. #endif /* VMS */
  1570. #endif /* OS2 */
  1571.     0, /* wake_rate */
  1572.     "OK15", /* wake_prompt */
  1573.     "", /* dmode_str */
  1574.     "", /* dmode_prompt */
  1575.     "ATD%s15", /* dial_str */
  1576.     0, /* dial_rate */
  1577.     1100, /* esc_time */
  1578.     43, /* esc_char */
  1579.     "ATQ0H015", /* hup_str */
  1580.     "AT\Q315", /* hwfc_str */
  1581.     "AT\Q1\X015", /* swfc_str */
  1582.     "AT\Q015", /* nofc_str */
  1583.     "AT\N615", /* ec_on_str */
  1584.     "AT\N015", /* ec_off_str */
  1585.     "AT\N6%C115", /* dc_on_str */
  1586.     "AT\N6%C015", /* dc_off_str */
  1587.     "ATS0=115", /* aa_on_str */
  1588.     "ATS0=015", /* aa_off_str */
  1589.     "", /* sb_on_str */
  1590.     "", /* sb_off_str */
  1591.     "ATM115", /* sp_on_str */
  1592.     "ATM015", /* sp_off_str */
  1593.     "ATL115", /* vol1_str */
  1594.     "ATL215", /* vol2_str */
  1595.     "ATL315", /* vol3_str */
  1596.     "ATX315", /* ignoredt */
  1597.     "", /* ini2 */
  1598.     115200L, /* max_speed */
  1599.     CKD_AT|CKD_SB|CKD_EC|CKD_DC|CKD_HW|CKD_SW, /* capas */
  1600.     getok /* ok_fn */
  1601. };
  1602. static
  1603. MDMINF ROLM = /* IBM / Siemens / Rolm 8000, 9000, 9751 CBX DCM */
  1604.     {
  1605.     "IBM/Siemens/Rolm CBX Data Communications Module",
  1606.     "", /* pulse command */
  1607.     "", /* tone command */
  1608.     60, /* dial_time */
  1609.     "", /* pause_chars */
  1610.     0, /* pause_time */
  1611.     "1515", /* wake_str */
  1612.     50, /* wake_rate */
  1613.     "MODIFY?", /* wake_prompt */
  1614.     "", /* dmode_str */
  1615.     "", /* dmode_prompt */
  1616.     "CALL %s15", /* dial_str */
  1617.     0, /* dial_rate */
  1618.     0, /* esc_time */
  1619.     0, /* esc_char */
  1620.     "", /* hup_str */
  1621.     "", /* hwfc_str */
  1622.     "", /* swfc_str */
  1623.     "", /* nofc_str */
  1624.     "", /* ec_on_str */
  1625.     "", /* ec_off_str */
  1626.     "", /* dc_on_str */
  1627.     "", /* dc_off_str */
  1628.     "", /* aa_on_str */
  1629.     "", /* aa_off_str */
  1630.     "", /* sb_on_str */
  1631.     "", /* sb_off_str */
  1632.     "", /* sp_off_str */
  1633.     "", /* sp_on_str */
  1634.     "", /* vol1_str */
  1635.     "", /* vol2_str */
  1636.     "", /* vol3_str */
  1637.     "", /* ignoredt */
  1638.     "", /* ini2 */
  1639.     19200L, /* max_speed */
  1640.     0, /* capas */
  1641.     NULL /* ok_fn */
  1642. };
  1643. static
  1644. MDMINF USR = /* USR Courier and Sportster modems */
  1645.     {
  1646.     "US Robotics Courier or Sportster",
  1647.     "ATP15", /* pulse command */
  1648.     "ATT15", /* tone command */
  1649.     35, /* dial_time */
  1650.     ",", /* pause_chars */
  1651.     2, /* pause_time */
  1652. #ifdef OS2
  1653.     "ATQ0E1V1X4&A3&S0&C1&D2&N0&Y3S14=015", /* wake_str */
  1654. #else
  1655. #ifdef SUNOS4
  1656.     "ATQ0X4&A3&S0&N0&Y3S14=015", /* wake_str -- needs &S0 in SunOS */
  1657. #else
  1658. #ifdef VMS
  1659.     "ATQ0X4&A3&S1&N0&Y3S14=015", /* wake_str -- needs &S1 in VMS */
  1660. #else
  1661.     "ATQ0X4&A3&N0&Y3S14=015", /* wake_str */
  1662. #endif /* VMS */
  1663. #endif /* SUNOS4 */
  1664. #endif /* OS2 */
  1665.     0, /* wake_rate */
  1666.     "OK15", /* wake_prompt */
  1667.     "", /* dmode_str */
  1668.     "", /* dmode_prompt */
  1669.     "ATD%s15", /* dial_str */
  1670.     0, /* dial_rate */
  1671.     1100, /* esc_time */
  1672.     43, /* esc_char */
  1673.     "ATQ0H015", /* hup_str */
  1674.     "AT&H1&R2&I015", /* hwfc_str */
  1675.     "AT&H2&R1&I215", /* swfc_str */
  1676.     "AT&H0&R1&I015", /* nofc_str */
  1677.     "AT&M4&B115", /* ec_on_str */
  1678.     "AT&M015", /* ec_off_str */
  1679.     "AT&K115", /* dc_on_str */
  1680.     "AT&K015", /* dc_off_str */
  1681.     "ATS0=115", /* aa_on_str */
  1682.     "ATS0=015", /* aa_off_str */
  1683.     "", /* sb_on_str */
  1684.     "", /* sb_off_str */
  1685.     "ATM115", /* sp_on_str */
  1686.     "ATM015", /* sp_off_str */
  1687.     "ATL115", /* vol1_str */
  1688.     "ATL215", /* vol2_str */
  1689.     "ATL315", /* vol3_str */
  1690.     "ATX315", /* ignoredt */
  1691.     "", /* ini2 */
  1692.     115200L, /* max_speed */
  1693.     CKD_AT|CKD_SB|CKD_EC|CKD_DC|CKD_HW|CKD_SW, /* capas */
  1694.     getok /* ok_fn */
  1695. };
  1696. static
  1697. MDMINF USRX2 = /* USR XJ-CC1560 X2 56K */
  1698.     {
  1699.     "US Robotics / Megahertz CC/XJ-CC1560 X2",
  1700.     "ATP15", /* pulse command */
  1701.     "ATT15", /* tone command */
  1702.     35, /* dial_time */
  1703.     ",", /* pause_chars */
  1704.     2, /* pause_time */
  1705. #ifdef OS2
  1706.     "ATQ0E1V1X4&A3&S0&B2&C1&D2&N015", /* wake_str */
  1707. #else
  1708. #ifdef VMS
  1709.     "ATQ0X4&A3&B2&N0&S115", /* wake_str */
  1710. #else
  1711.     "ATQ0X4&A3&B2&N015", /* wake_str */
  1712. #endif /* VMS */
  1713. #endif /* OS2 */
  1714.     0, /* wake_rate */
  1715.     "OK15", /* wake_prompt */
  1716.     "", /* dmode_str */
  1717.     "", /* dmode_prompt */
  1718.     "ATD%s15", /* dial_str */
  1719.     0, /* dial_rate */
  1720.     1100, /* esc_time */
  1721.     43, /* esc_char */
  1722.     "ATQ0H015", /* hup_str */
  1723.     "AT&H1&I015", /* hwfc_str */
  1724.     "AT&H2&I215", /* swfc_str */
  1725.     "AT&H0&I015", /* nofc_str */
  1726.     "AT&M415", /* ec_on_str */
  1727.     "AT&M015", /* ec_off_str */
  1728.     "AT&K115", /* dc_on_str */
  1729.     "AT&K015", /* dc_off_str */
  1730.     "ATS0=115", /* aa_on_str */
  1731.     "ATS0=015", /* aa_off_str */
  1732.     "AT&B115", /* sb_on_str */
  1733.     "AT&B015", /* sb_off_str */
  1734.     "ATM115", /* sp_on_str */
  1735.     "ATM015", /* sp_off_str */
  1736.     "ATL115", /* vol1_str */
  1737.     "ATL215", /* vol2_str */
  1738.     "ATL315", /* vol3_str */
  1739.     "ATX315", /* ignoredt */
  1740.     "", /* ini2 */
  1741.     115200L, /* max_speed */
  1742.     CKD_AT|CKD_SB|CKD_EC|CKD_DC|CKD_HW|CKD_SW, /* capas */
  1743.     getok /* ok_fn */
  1744. };
  1745. static
  1746. MDMINF OLDTB = /* Old Telebits */
  1747.     {
  1748.     "Telebit TrailBlazer, T1000, T1500, T2000, T2500",
  1749.     "ATP15", /* pulse command */
  1750.     "ATT15", /* tone command */
  1751.     60, /* dial_time */
  1752.     ",", /* pause_chars */
  1753.     2, /* pause_time */
  1754. #ifdef OS2
  1755.     "21AAAAATQ0E1V1X1&S0&C1&D2S12=50S50=0S54=315", /* wake_str. */
  1756. #else
  1757. #ifdef VMS
  1758.     "21AAAAATQ0X1S12=50S50=0S54=315", /* wake_str. */
  1759. #else
  1760.     "21AAAAATQ0X1&S1S12=50S50=0S54=315", /* wake_str. */
  1761. #endif /* VMS */
  1762. #endif /* OS2 */
  1763.     100, /* wake_rate = 100 msec */
  1764.     "OK15", /* wake_prompt */
  1765.     "", /* dmode_str */
  1766.     "", /* dmode_prompt */
  1767.     "ATD%s15", /* dial_str, Note: no T or P */
  1768.     80, /* dial_rate */
  1769.     1100, /* esc_time (guard time) */
  1770.     43, /* esc_char */
  1771.     "ATQ0H015", /* hup_str */
  1772.     "ATS58=2S68=215", /* hwfc_str */
  1773.     "ATS58=3S68=3S69=015", /* swfc_str */
  1774.     "ATS58=0S68=015", /* nofc_str */
  1775.     "ATS66=1S95=215", /* ec_on_str */
  1776.     "ATS95=015", /* ec_off_str */
  1777.     "ATS110=1S96=115", /* dc_on_str */
  1778.     "ATS110=0S96=015", /* dc_off_str */
  1779.     "ATS0=115", /* aa_on_str */
  1780.     "ATS0=015", /* aa_off_str */
  1781.     "", /* sb_on_str */
  1782.     "", /* sb_off_str */
  1783.     "ATM115", /* sp_on_str */
  1784.     "ATM015", /* sp_off_str */
  1785.     "ATL115", /* vol1_str */
  1786.     "ATL215", /* vol2_str */
  1787.     "ATL315", /* vol3_str */
  1788.     "ATX315", /* ignoredt */
  1789.     "", /* ini2 */
  1790.     19200L, /* max_speed */
  1791.     CKD_AT|CKD_SB|CKD_EC|CKD_DC|CKD_HW|CKD_SW|CKD_TB|CKD_KS, /* capas */
  1792.     getok /* ok_fn */
  1793. };
  1794. static
  1795. MDMINF NEWTB = /* New Telebits */
  1796.     {
  1797.     "Telebit T1600, T3000, QBlazer, WorldBlazer, etc.",
  1798.     "ATP15", /* pulse command */
  1799.     "ATT15", /* tone command */
  1800.     60, /* dial_time */
  1801.     ",", /* pause_chars */
  1802.     2, /* pause_time */
  1803. #ifdef OS2
  1804.     "21AAAAATQ0E1V1X2&S0&C1&D2S12=50S50=0S61=0S63=015", /* wake_str. */
  1805. #else
  1806. #ifdef VMS
  1807.     "21AAAAATQ0X2&S1S12=50S50=0S61=0S63=015", /* wake_str. */
  1808. #else
  1809.     "21AAAAATQ0X2S12=50S50=0S61=0S63=015", /* wake_str. */
  1810. #endif /* VMS */
  1811. #endif /* OS2 */
  1812.     100, /* wake_rate = 100 msec */
  1813.     "OK15", /* wake_prompt */
  1814.     "", /* dmode_str */
  1815.     "", /* dmode_prompt */
  1816.     "ATD%s15", /* dial_str, Note: no T or P */
  1817.     80, /* dial_rate */
  1818.     1100, /* esc_time (guard time) */
  1819.     43, /* esc_char */
  1820.     "ATQ0H015", /* hup_str */
  1821.     "ATS58=2S68=215", /* hwfc_str */
  1822.     "ATS58=3S68=315", /* swfc_str */
  1823.     "ATS58=0S68=015", /* nofc_str */
  1824.     "ATS180=315", /* ec_on_str */
  1825.     "ATS180=015", /* ec_off_str */
  1826.     "ATS190=115", /* dc_on_str */
  1827.     "ATS190=015", /* dc_off_str */
  1828.     "ATS0=115", /* aa_on_str */
  1829.     "ATS0=015", /* aa_off_str */
  1830.     "", /* sb_on_str */
  1831.     "", /* sb_off_str */
  1832.     "ATM115", /* sp_on_str */
  1833.     "ATM015", /* sp_off_str */
  1834.     "ATL115", /* vol1_str */
  1835.     "ATL215", /* vol2_str */
  1836.     "ATL315", /* vol3_str */
  1837.     "ATX315", /* ignoredt */
  1838.     "", /* ini2 */
  1839.     38400L, /* max_speed */
  1840.     CKD_AT|CKD_SB|CKD_EC|CKD_DC|CKD_HW|CKD_SW|CKD_TB|CKD_KS, /* capas */
  1841.     getok /* ok_fn */
  1842. };
  1843. #endif /* MINIDIAL */
  1844. static
  1845. MDMINF DUMMY = /* dummy information for modems that are handled elsewhere */
  1846.     {
  1847.     "(dummy)",
  1848.     "", /* pulse command */
  1849.     "", /* tone command */
  1850.     30, /* dial_time */
  1851.     "", /* pause_chars */
  1852.     0, /* pause_time */
  1853.     "", /* wake_str */
  1854.     0, /* wake_rate */
  1855.     "", /* wake_prompt */
  1856.     "", /* dmode_str */
  1857.     NULL, /* dmode_prompt */
  1858.     "%s15", /* dial_str */
  1859.     0, /* dial_rate */
  1860.     0, /* esc_time */
  1861.     0, /* esc_char */
  1862.     "", /* hup_str */
  1863.     "", /* hwfc_str */
  1864.     "", /* swfc_str */
  1865.     "", /* nofc_str */
  1866.     "", /* ec_on_str */
  1867.     "", /* ec_off_str */
  1868.     "", /* dc_on_str */
  1869.     "", /* dc_off_str */
  1870.     "", /* aa_on_str */
  1871.     "", /* aa_off_str */
  1872.     "", /* sb_on_str */
  1873.     "", /* sb_off_str */
  1874.     "", /* sp_off_str */
  1875.     "", /* sp_on_str */
  1876.     "", /* vol1_str */
  1877.     "", /* vol2_str */
  1878.     "", /* vol3_str */
  1879.     "", /* ignoredt */
  1880.     "", /* ini2 */
  1881.     0L, /* max_speed */
  1882.     0, /* capas */
  1883.     NULL /* ok_fn */
  1884. };
  1885. #ifndef MINIDIAL
  1886. static
  1887. MDMINF RWV32 = /* Generic Rockwell V.32 */
  1888.     {
  1889.     "Generic Rockwell V.32 modem", /* ATI3, ATI4, and ATI6 for details */
  1890.     "ATP15", /* pulse command */
  1891.     "ATT15", /* tone command */
  1892.     35, /* dial_time */
  1893.     ",", /* pause_chars */
  1894.     2, /* pause_time */
  1895. #ifdef OS2
  1896.     "ATQ0E1V1X4W1Y0&S0&C1&D2%E2\K5+FCLASS=0N1S37=015", /* wake_str */
  1897. #else
  1898. #ifdef VMS
  1899.     "ATQ0X4W1Y0&S1%E2\K5+FCLASS=0N1S37=015", /* wake_str */
  1900. #else
  1901.     "ATQ0X4W1Y0%E2\K5+FCLASS=0N1S37=015", /* wake_str */
  1902. #endif /* VMS */
  1903. #endif /* OS2 */
  1904.     0, /* wake_rate */
  1905.     "OK15", /* wake_prompt */
  1906.     "", /* dmode_str */
  1907.     "", /* dmode_prompt */
  1908.     "ATD%s15", /* dial_str */
  1909.     0, /* dial_rate */
  1910.     1100, /* esc_time */
  1911.     43, /* esc_char */
  1912.     "ATQ0H015", /* hup_str */
  1913.     "AT&K315", /* hwfc_str */
  1914.     "AT&K4S32=17S33=1915", /* swfc_str */
  1915.     "AT&K015", /* nofc_str */
  1916.     "AT&Q5\N015", /* ec_on_str */
  1917.     "AT&Q0\N115", /* ec_off_str */
  1918.     "AT%C115", /* dc_on_str */
  1919.     "AT%C015", /* dc_off_str */
  1920.     "ATS0=115", /* aa_on_str */
  1921.     "ATS0=015", /* aa_off_str */
  1922.     "", /* sb_on_str */
  1923.     "", /* sb_off_str */
  1924.     "ATM115", /* sp_on_str */
  1925.     "ATM015", /* sp_off_str */
  1926.     "ATL115", /* vol1_str */
  1927.     "ATL215", /* vol2_str */
  1928.     "ATL315", /* vol3_str */
  1929.     "ATX315", /* ignoredt */
  1930.     "", /* ini2 */
  1931.     57600L, /* max_speed */
  1932.     CKD_AT|CKD_SB|CKD_EC|CKD_DC|CKD_HW|CKD_SW, /* capas */
  1933.     getok /* ok_fn */
  1934. };
  1935. static
  1936. MDMINF RWV32B = /* Generic Rockwell V.32bis */
  1937.     {
  1938.     "Generic Rockwell V.32bis modem", /* ATI3, ATI4, and ATI6 for details */
  1939.     "ATP15", /* pulse command */
  1940.     "ATT15", /* tone command */
  1941.     35, /* dial_time */
  1942.     ",", /* pause_chars */
  1943.     2, /* pause_time */
  1944. #ifdef OS2
  1945.     "ATQ0E1V1X4W1Y0&S0&C1&D2%E2\K5+FCLASS=0N1S37=015", /* wake_str */
  1946. #else
  1947. #ifdef VMS
  1948.     "ATQ0X4W1Y0&S1%E2\K5+FCLASS=0N1S37=015", /* wake_str */
  1949. #else
  1950.     "ATQ0X4W1Y0%E2\K5+FCLASS=0N1S37=015", /* wake_str */
  1951. #endif /* VMS */
  1952. #endif /* OS2 */
  1953.     0, /* wake_rate */
  1954.     "OK15", /* wake_prompt */
  1955.     "", /* dmode_str */
  1956.     "", /* dmode_prompt */
  1957.     "ATD%s15", /* dial_str */
  1958.     0, /* dial_rate */
  1959.     1100, /* esc_time */
  1960.     43, /* esc_char */
  1961.     "ATQ0H015", /* hup_str */
  1962.     "AT&K315", /* hwfc_str */
  1963.     "AT&K4S32=17S33=1915", /* swfc_str */
  1964.     "AT&K015", /* nofc_str */
  1965.     "AT&Q5S36=7S48=7\N315", /* ec_on_str */
  1966.     "AT&Q0S48=128\N115", /* ec_off_str */
  1967.     "ATS46=138%C115", /* dc_on_str */
  1968.     "ATS46=136%C015", /* dc_off_str */
  1969.     "ATS0=115", /* aa_on_str */
  1970.     "ATS0=015", /* aa_off_str */
  1971.     "", /* sb_on_str */
  1972.     "", /* sb_off_str */
  1973.     "ATM115", /* sp_on_str */
  1974.     "ATM015", /* sp_off_str */
  1975.     "ATL115", /* vol1_str */
  1976.     "ATL215", /* vol2_str */
  1977.     "ATL315", /* vol3_str */
  1978.     "ATX315", /* ignoredt */
  1979.     "", /* ini2 */
  1980.     57600L, /* max_speed */
  1981.     CKD_AT|CKD_SB|CKD_EC|CKD_DC|CKD_HW|CKD_SW, /* capas */
  1982.     getok /* ok_fn */
  1983. };
  1984. static
  1985. MDMINF RWV34 = /* Generic Rockwell V.34 Data/Fax */
  1986.     {
  1987.     "Generic Rockwell V.34 modem", /* ATI3, ATI4, and ATI6 for details */
  1988.     "ATP15", /* pulse command */
  1989.     "ATT15", /* tone command */
  1990.     35, /* dial_time */
  1991.     ",", /* pause_chars */
  1992.     2, /* pause_time */
  1993. #ifdef OS2
  1994.     "ATQ0E1V1X4W1Y0%E2&S0&C1&D2\K5+FCLASS=0+MS=11,115", /* wake_str */
  1995. #else
  1996. #ifdef VMS
  1997.     "ATQ0X4W1Y0&S1%E2\K5+FCLASS=0+MS=11,115", /* wake_str */
  1998. #else
  1999.     "ATQ0X4W1Y0%E2\K5+FCLASS=0+MS=11,115", /* wake_str */
  2000. #endif /* VMS */
  2001. #endif /* OS2 */
  2002.     0, /* wake_rate */
  2003.     "OK15", /* wake_prompt */
  2004.     "", /* dmode_str */
  2005.     "", /* dmode_prompt */
  2006.     "ATD%s15", /* dial_str */
  2007.     0, /* dial_rate */
  2008.     1100, /* esc_time */
  2009.     43, /* esc_char */
  2010.     "ATQ0H015", /* hup_str */
  2011.     "AT&K315", /* hwfc_str */
  2012.     "AT&K4S32=17S33=1915", /* swfc_str */
  2013.     "AT&K015", /* nofc_str */
  2014.     "AT&Q5S36=7S48=7\N315", /* ec_on_str */
  2015.     "AT&Q0S48=128\N115", /* ec_off_str */
  2016.     "ATS46=138%C115", /* dc_on_str */
  2017.     "ATS46=136%C015", /* dc_off_str */
  2018.     "ATS0=115", /* aa_on_str */
  2019.     "ATS0=015", /* aa_off_str */
  2020.     "", /* sb_on_str */
  2021.     "", /* sb_off_str */
  2022.     "ATM115", /* sp_on_str */
  2023.     "ATM015", /* sp_off_str */
  2024.     "ATL115", /* vol1_str */
  2025.     "ATL215", /* vol2_str */
  2026.     "ATL315", /* vol3_str */
  2027.     "ATX315", /* ignoredt */
  2028.     "", /* ini2 */
  2029.     115200L, /* max_speed */
  2030.     CKD_AT|CKD_SB|CKD_EC|CKD_DC|CKD_HW|CKD_SW, /* capas */
  2031.     getok /* ok_fn */
  2032. };
  2033. static
  2034. MDMINF RWV90 = /* Generic Rockwell V.90 Data/Fax */
  2035.     {
  2036.     "Generic Rockwell V.90 56K modem", /* ATI3, ATI4, and ATI6 for details */
  2037.     "ATP15", /* pulse command */
  2038.     "ATT15", /* tone command */
  2039.     35, /* dial_time */
  2040.     ",", /* pause_chars */
  2041.     2, /* pause_time */
  2042. #ifdef OS2
  2043.     "AT&F0Q0E1V1&S0&C1&D1W1%E2\K5+FCLASS=0N1S0=0S37=0\V115",
  2044. #else
  2045. #ifdef VMS
  2046.     "AT&F0Q0&S1W1%E2\K5+FCLASS=0N1S0=0S37=0\V115", /* wake_str */
  2047. #else
  2048.     "AT&F0Q0W1%E2\K5+FCLASS=0N1S0=0S37=0\V115", /* wake_str */
  2049. #endif /* VMS */
  2050. #endif /* OS2 */
  2051.     0, /* wake_rate */
  2052.     "OK15", /* wake_prompt */
  2053.     "", /* dmode_str */
  2054.     "", /* dmode_prompt */
  2055.     "ATD%s15", /* dial_str */
  2056.     0, /* dial_rate */
  2057.     1100, /* esc_time */
  2058.     43, /* esc_char */
  2059.     "ATQ0H015", /* hup_str */
  2060.     "AT&K315", /* hwfc_str */
  2061.     "AT&K4S32=17S33=1915", /* swfc_str */
  2062.     "AT&K015", /* nofc_str */
  2063.     "AT&Q5S36=7S48=7\N315", /* ec_on_str */
  2064.     "AT&Q0S48=128\N115", /* ec_off_str */
  2065.     "AT%C315", /* dc_on_str */
  2066.     "ATS46=136%C015", /* dc_off_str */
  2067.     "ATS0=115", /* aa_on_str */
  2068.     "ATS0=015", /* aa_off_str */
  2069.     "", /* sb_on_str */
  2070.     "", /* sb_off_str */
  2071.     "ATM115", /* sp_on_str */
  2072.     "ATM015", /* sp_off_str */
  2073.     "ATL115", /* vol1_str */
  2074.     "ATL215", /* vol2_str */
  2075.     "ATL315", /* vol3_str */
  2076.     "ATX315", /* ignoredt */
  2077.     "", /* ini2 */
  2078.     115200L, /* max_speed */
  2079.     CKD_AT|CKD_SB|CKD_EC|CKD_DC|CKD_HW|CKD_SW, /* capas */
  2080.     getok /* ok_fn */
  2081. };
  2082. static
  2083. MDMINF MWAVE = /* IBM Mwave */
  2084.     {
  2085.     "IBM Mwave Adapter",
  2086.     "ATP15", /* pulse command */
  2087.     "ATT15", /* tone command */
  2088.     35, /* dial_time */
  2089.     ",", /* pause_chars */
  2090.     2, /* pause_time */
  2091. #ifdef OS2
  2092.     "ATQ0E1V1X4Y0&S0&C1&D2&M0&Q0&N1\K3\T0%E2S28=015", /* wake_str */
  2093. #else
  2094. #ifdef VMS
  2095.     "ATQ0X4Y0&M0&S1&Q0&N1&S0\K3\T0%E2S28=015", /* wake_str */
  2096. #else
  2097.     "ATQ0X4Y0&M0&Q0&N1&S0\K3\T0%E2S28=015", /* wake_str */
  2098. #endif /* VMS */
  2099. #endif /* OS2 */
  2100.     0, /* wake_rate */
  2101.     "OK15", /* wake_prompt */
  2102.     "", /* dmode_str */
  2103.     "", /* dmode_prompt */
  2104.     "ATD%s15", /* dial_str */
  2105.     0, /* dial_rate */
  2106.     1100, /* esc_time */
  2107.     43, /* esc_char */
  2108.     "ATQ0H015", /* hup_str */
  2109.     "AT\Q315", /* hwfc_str */
  2110.     "", /* swfc_str (it doesn't!) */
  2111.     "AT\Q015", /* nofc_str */
  2112.     "AT\N715", /* ec_on_str */
  2113.     "AT\N015", /* ec_off_str */
  2114.     "AT%C1"H315", /* dc_on_str */
  2115.     "AT%C0"H015", /* dc_off_str */
  2116.     "ATS0=115", /* aa_on_str */
  2117.     "ATS0=015", /* aa_off_str */
  2118.     "", /* sb_on_str */
  2119.     "", /* sb_off_str */
  2120.     "ATM115", /* sp_on_str */
  2121.     "ATM015", /* sp_off_str */
  2122.     "ATL115", /* vol1_str */
  2123.     "ATL215", /* vol2_str */
  2124.     "ATL315", /* vol3_str */
  2125.     "ATX315", /* ignoredt */
  2126.     "", /* ini2 */
  2127.     57600L, /* max_speed */
  2128.     CKD_AT|CKD_SB|CKD_EC|CKD_DC|CKD_HW, /* capas */
  2129.     getok /* ok_fn */
  2130. };
  2131. static
  2132. MDMINF TELEPATH = /* Gateway 2000 Telepath */
  2133.     {
  2134.     "Gateway 2000 Telepath II 28.8",
  2135.     "ATP15", /* pulse command */
  2136.     "ATT15", /* tone command */
  2137.     35, /* dial_time */
  2138.     ",", /* pause_chars */
  2139.     2, /* pause_time */
  2140. #ifdef OS2
  2141.     "ATQ0E1V1X4&S0&C1&D2&N0&Y2#CLS=0S13=0S15=0S19=015", /* wake_str */
  2142. #else
  2143. #ifdef VMS
  2144.     "ATQ0X4&N0&S1&Y1#CLS=0S13=0S15=0S19=015", /* wake_str */
  2145. #else
  2146.     "ATQ0X4&N0&Y1#CLS=0S13=0S15=0S19=015", /* wake_str */
  2147. #endif /* VMS */
  2148. #endif /* OS2 */
  2149.     0, /* wake_rate */
  2150.     "OK15", /* wake_prompt */
  2151.     "", /* dmode_str */
  2152.     "", /* dmode_prompt */
  2153.     "ATD%s15", /* dial_str */
  2154.     0, /* dial_rate */
  2155.     1100, /* esc_time */
  2156.     43, /* esc_char */
  2157.     "ATQ0H015", /* hup_str */
  2158.     "AT&H1&R215", /* hwfc_str */
  2159.     "AT&H2&I2S22=17S23=1915", /* swfc_str */
  2160.     "AT&H0&I0&R115", /* nofc_str */
  2161.     "AT&M4&B115", /* ec_on_str -- also fixes speed */
  2162.     "AT&M015", /* ec_off_str */
  2163.     "AT&K115", /* dc_on_str */
  2164.     "AT&K015", /* dc_off_str */
  2165.     "ATS0=115", /* aa_on_str */
  2166.     "ATS0=015", /* aa_off_str */
  2167.     "", /* sb_on_str */
  2168.     "", /* sb_off_str */
  2169.     "ATM115", /* sp_on_str */
  2170.     "ATM015", /* sp_off_str */
  2171.     "ATL115", /* vol1_str */
  2172.     "ATL215", /* vol2_str */
  2173.     "ATL315", /* vol3_str */
  2174.     "ATX315", /* ignoredt */
  2175.     "", /* ini2 */
  2176.     57600L, /* max_speed */
  2177.     CKD_AT|CKD_SB|CKD_EC|CKD_DC|CKD_HW|CKD_SW, /* capas */
  2178.     getok /* ok_fn */
  2179. };
  2180. static
  2181. MDMINF CARDINAL = /* Cardinal - based on Rockwell V.34 */
  2182.     {
  2183.     "Cardinal MVP288X Series", /* ATI3, ATI4, and ATI6 for details */
  2184.     "ATP15", /* pulse command */
  2185.     "ATT15", /* tone command */
  2186.     35, /* dial_time */
  2187.     ",", /* pause_chars */
  2188.     2, /* pause_time */
  2189. #ifdef OS2
  2190.     "ATQ0E1V1X4W1Y0%E2&S0&C1&D2\K5+FCLASS=0+MS=11,115", /* wake_str */
  2191. #else
  2192. #ifdef VMS
  2193.     "ATQ0X4W1Y0&S1%E2\K5+FCLASS=0+MS=11,115", /* wake_str */
  2194. #else
  2195.     "ATQ0X4W1Y0%E2\K5+FCLASS=0+MS=11,115", /* wake_str */
  2196. #endif /* VMS */
  2197. #endif /* OS2 */
  2198.     0, /* wake_rate */
  2199.     "OK15", /* wake_prompt */
  2200.     "", /* dmode_str */
  2201.     "", /* dmode_prompt */
  2202.     "ATD%s15", /* dial_str */
  2203.     0, /* dial_rate */
  2204.     1100, /* esc_time */
  2205.     43, /* esc_char */
  2206.     "ATQ0H015", /* hup_str */
  2207.     "AT&K315", /* hwfc_str */
  2208.     "AT&K4S32=17S33=1915", /* swfc_str */
  2209.     "AT&K015", /* nofc_str */
  2210.     "AT&Q5S36=7S48=7\N315", /* ec_on_str */
  2211.     "AT&Q0S48=128\N115", /* ec_off_str */
  2212.     "ATS46=138%C115", /* dc_on_str */
  2213.     "ATS46=136%C015", /* dc_off_str */
  2214.     "ATS0=115", /* aa_on_str */
  2215.     "ATS0=015", /* aa_off_str */
  2216.     "", /* sb_on_str */
  2217.     "", /* sb_off_str */
  2218.     "ATM115", /* sp_on_str */
  2219.     "ATM015", /* sp_off_str */
  2220.     "ATL115", /* vol1_str */
  2221.     "ATL215", /* vol2_str */
  2222.     "ATL315", /* vol3_str */
  2223.     "ATX315", /* ignoredt */
  2224.     "", /* ini2 */
  2225.     115200L, /* max_speed */
  2226.     CKD_AT|CKD_SB|CKD_EC|CKD_DC|CKD_HW|CKD_SW, /* capas */
  2227.     getok /* ok_fn */
  2228. };
  2229. /*
  2230.   Now the "old" modems, all grouped together, and also within
  2231.   "if not defined MINIDIAL"...
  2232. */
  2233. #ifdef OLDMODEMS
  2234. static
  2235. MDMINF CERMETEK = /* Information for "Cermetek Info-Mate 212 A" modem */
  2236.     {
  2237.     "Cermetek Info-Mate 212 A",
  2238.     "", /* pulse command */
  2239.     "", /* tone command */
  2240.     20, /* dial_time */
  2241.     "BbPpTt", /* pause_chars */
  2242.     0, /* pause_time */
  2243.     "  XY16R15", /* wake_str */
  2244.     200, /* wake_rate */
  2245.     "", /* wake_prompt */
  2246.     "", /* dmode_str */
  2247.     NULL, /* dmode_prompt */
  2248.     "16D '%s'15", /* dial_str */
  2249.     200, /* dial_rate */
  2250.     0, /* esc_time */
  2251.     0, /* esc_char */
  2252.     "", /* hup_str */
  2253.     "", /* hwfc_str */
  2254.     "", /* swfc_str */
  2255.     "", /* nofc_str */
  2256.     "", /* ec_on_str */
  2257.     "", /* ec_off_str */
  2258.     "", /* dc_on_str */
  2259.     "", /* dc_off_str */
  2260.     "", /* aa_on_str */
  2261.     "", /* aa_off_str */
  2262.     "", /* sb_on_str */
  2263.     "", /* sb_off_str */
  2264.     "", /* sp_off_str */
  2265.     "", /* sp_on_str */
  2266.     "", /* vol1_str */
  2267.     "", /* vol2_str */
  2268.     "", /* vol3_str */
  2269.     "", /* ignoredt */
  2270.     "", /* ini2 */
  2271.     1200L, /* max_speed */
  2272.     0, /* capas */
  2273.     NULL /* ok_fn */
  2274. };
  2275. static
  2276. MDMINF DF03 = /* information for "DEC DF03-AC" modem */
  2277.     {
  2278.     "Digital DF03-AC",
  2279.     "", /* pulse command */
  2280.     "", /* tone command */
  2281.     27, /* dial_time */
  2282.     "=", /* pause_chars */
  2283.     15, /* pause_time */
  2284.     "0102", /* wake_str */
  2285.     0, /* wake_rate */
  2286.     "", /* wake_prompt */
  2287.     "", /* dmode_str */
  2288.     NULL, /* dmode_prompt */
  2289.     "%s", /* dial_str */
  2290.     0, /* dial_rate */
  2291.     0, /* esc_time */
  2292.     0, /* esc_char */
  2293.     "", /* hup_str */
  2294.     "", /* hwfc_str */
  2295.     "", /* swfc_str */
  2296.     "", /* nofc_str */
  2297.     "", /* ec_on_str */
  2298.     "", /* ec_off_str */
  2299.     "", /* dc_on_str */
  2300.     "", /* dc_off_str */
  2301.     "", /* aa_on_str */
  2302.     "", /* aa_off_str */
  2303.     "", /* sb_on_str */
  2304.     "", /* sb_off_str */
  2305.     "", /* sp_off_str */
  2306.     "", /* sp_on_str */
  2307.     "", /* vol1_str */
  2308.     "", /* vol2_str */
  2309.     "", /* vol3_str */
  2310.     "", /* ignoredt */
  2311.     "", /* ini2 */
  2312.     0L, /* max_speed */
  2313.     0, /* capas */
  2314.     NULL /* ok_fn */
  2315. };
  2316. static
  2317. MDMINF DF100 = /* information for "DEC DF100-series" modem */
  2318. /*
  2319.  * The telephone "number" can include "P"s and/or "T"s
  2320.  * within it to indicate that subsequent digits are
  2321.  * to be dialed using pulse or tone dialing.  The
  2322.  * modem defaults to pulse dialing.  You may modify
  2323.  * the dial string below to explicitly default all
  2324.  * dialing to pulse or tone, but doing so prevents
  2325.  * the use of phone numbers that you may have stored
  2326.  * in the modem's memory.
  2327.  */
  2328.     {
  2329.     "Digital DF-100",
  2330.     "", /* pulse command */
  2331.     "", /* tone command */
  2332.     30, /* dial_time */
  2333.     "=", /* pause_chars */
  2334.     15, /* pause_time */
  2335.     "01", /* wake_str */
  2336.     0, /* wake_rate */
  2337.     "", /* wake_prompt */
  2338.     "", /* dmode_str */
  2339.     NULL, /* dmode_prompt */
  2340.     "%s#", /* dial_str */
  2341.     0, /* dial_rate */
  2342.     0, /* esc_time */
  2343.     0, /* esc_char */
  2344.     "", /* hup_str */
  2345.     "", /* hwfc_str */
  2346.     "", /* swfc_str */
  2347.     "", /* nofc_str */
  2348.     "", /* ec_on_str */
  2349.     "", /* ec_off_str */
  2350.     "", /* dc_on_str */
  2351.     "", /* dc_off_str */
  2352.     "", /* aa_on_str */
  2353.     "", /* aa_off_str */
  2354.     "", /* sb_on_str */
  2355.     "", /* sb_off_str */
  2356.     "", /* sp_off_str */
  2357.     "", /* sp_on_str */
  2358.     "", /* vol1_str */
  2359.     "", /* vol2_str */
  2360.     "", /* vol3_str */
  2361.     "", /* ignoredt */
  2362.     "", /* ini2 */
  2363.     0L, /* max_speed */
  2364.     0, /* capas */
  2365.     NULL /* ok_fn */
  2366. };
  2367. static
  2368. MDMINF DF200 = /* information for "DEC DF200-series" modem */
  2369. /*
  2370.  * The telephone "number" can include "P"s and/or "T"s
  2371.  * within it to indicate that subsequent digits are
  2372.  * to be dialed using pulse or tone dialing.  The
  2373.  * modem defaults to pulse dialing.  You may modify
  2374.  * the dial string below to explicitly default all
  2375.  * dialing to pulse or tone, but doing so prevents
  2376.  * the use of phone numbers that you may have stored
  2377.  * in the modem's memory.
  2378.  */
  2379.     {
  2380.     "Digital DF-200",
  2381.     "", /* pulse command */
  2382.     "", /* tone command */
  2383.     30, /* dial_time */
  2384.     "=W", /* pause_chars */ /* =: second tone; W: 5 secs */
  2385.     15, /* pause_time */ /* worst case */
  2386.     "02", /* wake_str */ /* allow stored number usage */
  2387.     0, /* wake_rate */
  2388.     "", /* wake_prompt */
  2389.     "", /* dmode_str */
  2390.     NULL, /* dmode_prompt */
  2391. #ifdef COMMENT
  2392.     "%s!", /* dial_str */
  2393. #else
  2394.     "   d %s15",
  2395. #endif /* COMMENT */
  2396.     0, /* dial_rate */
  2397.     0, /* esc_time */
  2398.     0, /* esc_char */
  2399.     "", /* hup_str */
  2400.     "", /* hwfc_str */
  2401.     "", /* swfc_str */
  2402.     "", /* nofc_str */
  2403.     "", /* ec_on_str */
  2404.     "", /* ec_off_str */
  2405.     "", /* dc_on_str */
  2406.     "", /* dc_off_str */
  2407.     "", /* aa_on_str */
  2408.     "", /* aa_off_str */
  2409.     "", /* sb_on_str */
  2410.     "", /* sb_off_str */
  2411.     "", /* sp_off_str */
  2412.     "", /* sp_on_str */
  2413.     "", /* vol1_str */
  2414.     "", /* vol2_str */
  2415.     "", /* vol3_str */
  2416.     "", /* ignoredt */
  2417.     "", /* ini2 */
  2418.     0L, /* max_speed */
  2419.     0, /* capas */
  2420.     NULL /* ok_fn */
  2421. };
  2422. static
  2423. MDMINF GDC = /* information for "GeneralDataComm 212A/ED" modem */
  2424.     {
  2425.     "GeneralDataComm 212A/ED",
  2426.     "", /* pulse command */
  2427.     "", /* tone command */
  2428.     32, /* dial_time */
  2429.     "%", /* pause_chars */
  2430.     3, /* pause_time */
  2431.     "1515", /* wake_str */
  2432.     500, /* wake_rate */
  2433.     "$", /* wake_prompt */
  2434.     "D15", /* dmode_str */
  2435.     ":", /* dmode_prompt */
  2436.     "T%s15", /* dial_str */
  2437.     0, /* dial_rate */
  2438.     0, /* esc_time */
  2439.     0, /* esc_char */
  2440.     "", /* hup_str */
  2441.     "", /* hwfc_str */
  2442.     "", /* swfc_str */
  2443.     "", /* nofc_str */
  2444.     "", /* ec_on_str */
  2445.     "", /* ec_off_str */
  2446.     "", /* dc_on_str */
  2447.     "", /* dc_off_str */
  2448.     "", /* aa_on_str */
  2449.     "", /* aa_off_str */
  2450.     "", /* sb_on_str */
  2451.     "", /* sb_off_str */
  2452.     "", /* sp_off_str */
  2453.     "", /* sp_on_str */
  2454.     "", /* vol1_str */
  2455.     "", /* vol2_str */
  2456.     "", /* vol3_str */
  2457.     "", /* ignoredt */
  2458.     "", /* ini2 */
  2459.     1200L, /* max_speed */
  2460.     0, /* capas */
  2461.     NULL /* ok_fn */
  2462. };
  2463. static
  2464. MDMINF PENRIL = /* information for "Penril" modem */
  2465.     {
  2466.     "Penril modem",
  2467.     "", /* pulse command */
  2468.     "", /* tone command */
  2469.     50, /* dial_time */
  2470.     "", /* pause_chars */
  2471.     0, /* pause_time */
  2472.     "1515", /* wake_str */
  2473.     300, /* wake_rate */
  2474.     ">", /* wake_prompt */
  2475.     "k15", /* dmode_str */
  2476.     ":", /* dmode_prompt */
  2477.     "%s15", /* dial_str */
  2478.     0, /* dial_rate */
  2479.     0, /* esc_time */
  2480.     0, /* esc_char */
  2481.     "", /* hup_str */
  2482.     "", /* hwfc_str */
  2483.     "", /* swfc_str */
  2484.     "", /* nofc_str */
  2485.     "", /* ec_on_str */
  2486.     "", /* ec_off_str */
  2487.     "", /* dc_on_str */
  2488.     "", /* dc_off_str */
  2489.     "", /* aa_on_str */
  2490.     "", /* aa_off_str */
  2491.     "", /* sb_on_str */
  2492.     "", /* sb_off_str */
  2493.     "", /* sp_off_str */
  2494.     "", /* sp_on_str */
  2495.     "", /* vol1_str */
  2496.     "", /* vol2_str */
  2497.     "", /* vol3_str */
  2498.     "", /* ignoredt */
  2499.     "", /* ini2 */
  2500.     0L, /* max_speed */
  2501.     0, /* capas */
  2502.     NULL /* ok_fn */
  2503. };
  2504. static
  2505. MDMINF RACAL = /* Racal Vadic VA4492E */
  2506.     {
  2507.     "Racal Vadic VA4492E",
  2508.     "", /* pulse command */
  2509.     "", /* tone command */
  2510.     35, /* dial_time (manual says modem is hardwired to 60) */
  2511.     "Kk", /* pause_chars */
  2512.     5, /* pause_time */
  2513.     "0515", /* wake_str, ^E^M */
  2514.     50, /* wake_rate */
  2515.     "*", /* wake_prompt */
  2516.     "D15", /* dmode_str */
  2517.     "?", /* dmode_prompt */
  2518.     "%s15", /* dial_str */
  2519.     0, /* dial_rate */
  2520.     1100, /* esc_time */
  2521.     5, /* esc_char, ^E */
  2522.     "0304", /* hup_str, ^C^D */
  2523.     0, /* hwfc_str */
  2524.     "", /* swfc_str */
  2525.     "", /* nofc_str */
  2526.     "", /* ec_on_str */
  2527.     "", /* ec_off_str */
  2528.     "", /* dc_on_str */
  2529.     "", /* dc_off_str */
  2530.     "", /* aa_on_str */
  2531.     "", /* aa_off_str */
  2532.     "", /* sb_on_str */
  2533.     "", /* sb_off_str */
  2534.     "", /* sp_off_str */
  2535.     "", /* sp_on_str */
  2536.     "", /* vol1_str */
  2537.     "", /* vol2_str */
  2538.     "", /* vol3_str */
  2539.     "", /* ignoredt */
  2540.     "", /* ini2 */
  2541.     0L, /* max_speed */
  2542.     0, /* capas */
  2543.     NULL /* ok_fn */
  2544. };
  2545. static
  2546. MDMINF VENTEL = /* Information for Ven-Tel modem */
  2547.     {
  2548.     "Ven-Tel",
  2549.     "", /* pulse command */
  2550.     "", /* tone command */
  2551.     20, /* dial_time */
  2552.     "%", /* pause_chars */
  2553.     5, /* pause_time */
  2554.     "151515", /* wake_str */
  2555.     300, /* wake_rate */
  2556.     "$", /* wake_prompt */
  2557.     "K15", /* dmode_str (was "") */
  2558.     "Number to call: ", /* dmode_prompt (was NULL) */
  2559.     "%s15", /* dial_str (was "<K%sr>") */
  2560.     0, /* dial_rate */
  2561.     0, /* esc_time */
  2562.     0, /* esc_char */
  2563.     "", /* hup_str */
  2564.     "", /* hwfc_str */
  2565.     "", /* swfc_str */
  2566.     "", /* nofc_str */
  2567.     "", /* ec_on_str */
  2568.     "", /* ec_off_str */
  2569.     "", /* dc_on_str */
  2570.     "", /* dc_off_str */
  2571.     "", /* aa_on_str */
  2572.     "", /* aa_off_str */
  2573.     "", /* sb_on_str */
  2574.     "", /* sb_off_str */
  2575.     "", /* sp_off_str */
  2576.     "", /* sp_on_str */
  2577.     "", /* vol1_str */
  2578.     "", /* vol2_str */
  2579.     "", /* vol3_str */
  2580.     "", /* ignoredt */
  2581.     "", /* ini2 */
  2582.     0L, /* max_speed */
  2583.     0, /* capas */
  2584.     NULL /* ok_fn */
  2585. };
  2586. static
  2587. MDMINF CONCORD = /* Info for Condor CDS 220 2400b modem */
  2588.     {
  2589.     "Concord Condor CDS 220 2400b",
  2590.     "", /* pulse command */
  2591.     "", /* tone command */
  2592.     35, /* dial_time */
  2593.     ",", /* pause_chars */
  2594.     2, /* pause_time */
  2595.     "1515", /* wake_str */
  2596.     20, /* wake_rate */
  2597.     "CDS >", /* wake_prompt */
  2598.     "", /* dmode_str */
  2599.     NULL, /* dmode_prompt */
  2600.     "<D M%s15>", /* dial_str */
  2601.     0, /* dial_rate */
  2602.     0, /* esc_time */
  2603.     0, /* esc_char */
  2604.     "", /* hup_str */
  2605.     "", /* hwfc_str */
  2606.     "", /* swfc_str */
  2607.     "", /* nofc_str */
  2608.     "", /* ec_on_str */
  2609.     "", /* ec_off_str */
  2610.     "", /* dc_on_str */
  2611.     "", /* dc_off_str */
  2612.     "", /* aa_on_str */
  2613.     "", /* aa_off_str */
  2614.     "", /* sb_on_str */
  2615.     "", /* sb_off_str */
  2616.     "", /* sp_off_str */
  2617.     "", /* sp_on_str */
  2618.     "", /* vol1_str */
  2619.     "", /* vol2_str */
  2620.     "", /* vol3_str */
  2621.     "", /* ignoredt */
  2622.     "", /* ini2 */
  2623.     2400L, /* max_speed */
  2624.     0, /* capas */
  2625.     NULL /* ok_fn */
  2626. };
  2627. #endif /* OLDMODEMS */
  2628. static
  2629. MDMINF MICROCOM = /* Microcom modems in native SX mode */
  2630. /* (long answer only) */
  2631. {
  2632.     "Microcom MNP modems in SX command mode",
  2633.     "DP15", /* pulse command */
  2634.     "DT15", /* tone command */
  2635.     35, /* dial_time */
  2636.     ",!@", /* pause_chars (! and @ aren't pure pauses) */
  2637.     3, /* pause_time */
  2638. /*
  2639.   The following sets 8 bits, no parity, BREAK passthru, and SE0 disables the
  2640.   escape character, which is a single character with no guard time, totally
  2641.   unsafe, so we have no choice but to disable it.  Especially since, by
  2642.   default, it is Ctrl-A, which is Kermit's packet-start character.  We would
  2643.   change it to something else, which would enable "mdmhup()", but the user
  2644.   wouldn't know about it.  Very bad.  Note: SE1 sets it to Ctrl-A, SE2
  2645.   sets it to Ctrl-B, etc (1..31 allowed).  Also SE/Q sets it to "Q".
  2646. */
  2647.     "SE0;S1P4;SBRK515", /* wake_str */
  2648.     100, /* wake_rate */
  2649.     "!", /* wake_prompt */
  2650.     "", /* dmode_str */
  2651.     NULL, /* dmode_prompt */
  2652.     "D%s15", /* dial_str - number up to 39 chars */
  2653.     0, /* dial_rate */
  2654.     0, /* esc_time */
  2655.     0, /* esc_char - we can't use this */
  2656.     "", /* hup_str - it's "H" but can't use */
  2657.     "SF1315", /* hwfc_str */
  2658.     "SF1115", /* swfc_str */
  2659.     "SF1015", /* nofc_str */
  2660.     "BAOFF;SMAUT15", /* ec_on_str */
  2661.     "BAON;SMDIR15", /* ec_off_str */
  2662.     "COMP115", /* dc_on_str */
  2663.     "COMP015", /* dc_off_str */
  2664.     "AA", /* aa_on_str */
  2665.     "", /* aa_off_str */
  2666.     "", /* sb_on_str */
  2667.     "", /* sb_off_str */
  2668.     "SA2", /* sp_off_str */
  2669.     "SA0", /* sp_on_str */
  2670.     "", /* vol1_str */
  2671.     "", /* vol2_str */
  2672.     "", /* vol3_str */
  2673.     "", /* ignoredt */
  2674.     "", /* ini2 */
  2675.     0L, /* max_speed */
  2676.     CKD_SB|CKD_EC|CKD_DC|CKD_HW|CKD_SW|CKD_KS, /* capas */
  2677.     getok /* ok_fn */
  2678. };
  2679. static
  2680. MDMINF MICROLINK = /* MicroLink ... */
  2681.     { /* 14.4TQ,TL,PC;28.8TQ,TQV;2440T/TR */
  2682.     "ELSA MicroLink 14.4, 28.8, 33.6 or 56K", /* ELSA GmbH, Aachen */
  2683.     "ATP15", /* pulse command */
  2684.     "ATT15", /* tone command */
  2685.     35, /* dial_time */
  2686.     ",", /* pause_chars */
  2687.     2, /* pause_time */
  2688. #ifdef OS2
  2689.     "ATQ0E1V1X4&S0\D0&C1&D2\K515", /* wake_str */
  2690. #else
  2691. #ifdef VMS
  2692.     "ATQ0X4&S1\K515", /* wake_str */
  2693. #else
  2694.     "ATQ0X4\K515", /* wake_str */
  2695. #endif /* VMS */
  2696. #endif /* OS2 */
  2697.     0, /* wake_rate */
  2698.     "OK15", /* wake_prompt */
  2699.     "", /* dmode_str */
  2700.     "", /* dmode_prompt */
  2701.     "ATD%s15", /* dial_str */
  2702.     0, /* dial_rate */
  2703.     1100, /* esc_time */
  2704.     43, /* esc_char */
  2705.     "ATQ0H15", /* hup_str */
  2706.     "AT\Q315", /* hwfc_str */
  2707.     "AT\Q1\X015", /* swfc_str */
  2708.     "AT\Q015", /* nofc_str */
  2709.     "AT\N315", /* ec_on_str */
  2710.     "AT\N015", /* ec_off_str */
  2711.     "AT%C315", /* dc_on_str */
  2712.     "AT%C015", /* dc_off_str */
  2713.     "ATS0=115", /* aa_on_str */
  2714.     "ATS0=015", /* aa_off_str */
  2715.     "\J0", /* sb_on_str (?) */
  2716.     "", /* sb_off_str */
  2717.     "ATM115", /* sp_on_str */
  2718.     "ATM015", /* sp_off_str */
  2719.     "ATL115", /* vol1_str */
  2720.     "ATL215", /* vol2_str */
  2721.     "ATL315", /* vol3_str */
  2722.     "ATX315", /* ignoredt */
  2723.     "", /* ini2 */
  2724.     57600L, /* max_speed */
  2725.     CKD_AT|CKD_SB|CKD_EC|CKD_DC|CKD_HW|CKD_SW, /* capas */
  2726.     getok /* ok_fn */
  2727. };
  2728. static
  2729. MDMINF ULINKV250 = /* MicroLink V.250 */
  2730.     { /* 56Kflex, V.90; V.250 command set */
  2731.     "ELSA MicroLink 56K V.250", /* ELSA GmbH, Aachen */
  2732.     "ATP15", /* pulse command */
  2733.     "ATT15", /* tone command */
  2734.     35, /* dial_time */
  2735.     ",", /* pause_chars */
  2736.     2, /* pause_time */
  2737. #ifdef OS2
  2738.     /* D0 = DSR & CTS always on but hwfc overrides on CTS. */
  2739.     "ATQ0E1V1X4&S0\D0&C1&D215", /* wake_str */
  2740. #else
  2741. #ifdef VMS
  2742.     "ATQ0X4&S115", /* wake_str */
  2743. #else
  2744.     "ATQ0X415", /* wake_str */
  2745. #endif /* VMS */
  2746. #endif /* OS2 */
  2747.     0, /* wake_rate */
  2748.     "OK15", /* wake_prompt */
  2749.     "", /* dmode_str */
  2750.     "", /* dmode_prompt */
  2751.     "ATD%s15", /* dial_str */
  2752.     0, /* dial_rate */
  2753.     1100, /* esc_time */
  2754.     43, /* esc_char */
  2755.     "ATQ0H015", /* hup_str */
  2756.     "AT+IFC=2,215", /* hwfc_str */
  2757.     "AT+IFC=1,115", /* swfc_str */
  2758.     "AT+IFC=0,015", /* nofc_str */
  2759.     "AT+ES=3,015", /* ec_on_str */
  2760.     "AT+ES=1,015", /* ec_off_str */
  2761.     "AT+DS=3,0,2048,3215", /* dc_on_str */
  2762.     "AT+DS=0,015", /* dc_off_str */
  2763.     "ATS0=115", /* aa_on_str */
  2764.     "ATS0=015", /* aa_off_str */
  2765.     "", /* sb_on_str (?) */
  2766.     "", /* sb_off_str */
  2767.     "ATM115", /* sp_on_str */
  2768.     "ATM015", /* sp_off_str */
  2769.     "ATL115", /* vol1_str */
  2770.     "ATL215", /* vol2_str */
  2771.     "ATL315", /* vol3_str */
  2772.     "ATX315", /* ignoredt */
  2773.     "", /* ini2 */
  2774.     57600L, /* max_speed */
  2775.     CKD_AT|CKD_SB|CKD_EC|CKD_DC|CKD_HW|CKD_SW, /* capas */
  2776.     getok /* ok_fn */
  2777. };
  2778. #endif /* MINIDIAL */
  2779. static
  2780. MDMINF ITUTV250 = /* ITU-T V.250 conforming modem */
  2781. {
  2782.     "Any ITU-T V.25ter/V.250 conformant modem",
  2783.     "ATP15", /* pulse command */
  2784.     "ATT15", /* tone command */
  2785.     35, /* dial_time */
  2786.     ",", /* pause_chars */
  2787.     2, /* pause_time */
  2788. #ifdef OS2
  2789.     "ATQ0E1V1X4&S0&C1&D215", /* wake_str */
  2790. #else
  2791. #ifdef VMS
  2792.     "ATQ0X4&S115", /* wake_str */
  2793. #else
  2794.     "ATQ0X415", /* wake_str */
  2795. #endif /* VMS */
  2796. #endif /* OS2 */
  2797.     0, /* wake_rate */
  2798.     "OK15", /* wake_prompt */
  2799.     "", /* dmode_str */
  2800.     "", /* dmode_prompt */
  2801.     "ATD%s15", /* dial_str */
  2802.     0, /* dial_rate */
  2803.     1100, /* esc_time */
  2804.     43, /* esc_char */
  2805.     "ATQ0H015", /* hup_str */
  2806.     "AT+IFC=2,215", /* hwfc_str */
  2807.     "AT+IFC=1,115", /* swfc_str */
  2808.     "AT+IFC=0,015", /* nofc_str */
  2809.     "AT+ES=3,0,2;+EB=1,0,3015", /* ec_on_str */
  2810.     "AT+ES=015", /* ec_off_str */
  2811.     "AT+DS=3,015", /* dc_on_str */
  2812.     "AT+DS=0,015", /* dc_off_str */
  2813.     "ATS0=115", /* aa_on_str */
  2814.     "ATS0=015", /* aa_off_str */
  2815.     "", /* sb_on_str */
  2816.     "", /* sb_off_str */
  2817.     "ATM115", /* sp_on_str */
  2818.     "ATM015", /* sp_off_str */
  2819.     "ATL115", /* vol1_str */
  2820.     "ATL215", /* vol2_str */
  2821.     "ATL315", /* vol3_str */
  2822.     "ATX315", /* ignoredt */
  2823.     "", /* ini2 */
  2824.     57600L, /* max_speed */
  2825.     CKD_AT|CKD_SB|CKD_EC|CKD_DC|CKD_HW|CKD_SW, /* capas */
  2826.     getok /* ok_fn */
  2827. };
  2828. #ifndef CK_TAPI
  2829. static
  2830. #endif /* CK_TAPI */
  2831. MDMINF GENERIC = /* Generic high speed ... */
  2832.     {
  2833.     "Generic high-speed AT command set",
  2834.     "ATP15", /* pulse command */
  2835.     "ATT15", /* tone command */
  2836.     35, /* dial_time */
  2837.     ",", /* pause_chars */
  2838.     2, /* pause_time */
  2839.     "AT&F15", /* wake_str */
  2840.     0, /* wake_rate */
  2841.     "OK15", /* wake_prompt */
  2842.     "", /* dmode_str */
  2843.     "", /* dmode_prompt */
  2844.     "ATD%s15", /* dial_str */
  2845.     0, /* dial_rate */
  2846.     1100, /* esc_time */
  2847.     43, /* esc_char */
  2848.     "ATQ0H15", /* hup_str */
  2849.     "", /* hwfc_str */
  2850.     "", /* swfc_str */
  2851.     "", /* nofc_str */
  2852.     "", /* ec_on_str */
  2853.     "", /* ec_off_str */
  2854.     "", /* dc_on_str */
  2855.     "", /* dc_off_str */
  2856.     "ATS0=115", /* aa_on_str */
  2857.     "ATS0=015", /* aa_off_str */
  2858.     "", /* sb_on_str */
  2859.     "", /* sb_off_str */
  2860.     "ATM115", /* sp_on_str */
  2861.     "ATM015", /* sp_off_str */
  2862.     "ATL115", /* vol1_str */
  2863.     "ATL215", /* vol2_str */
  2864.     "ATL315", /* vol3_str */
  2865.     "ATX315", /* ignoredt */
  2866.     "", /* ini2 */
  2867.     57600L, /* max_speed */
  2868.     CKD_AT|CKD_SB|CKD_EC|CKD_DC|CKD_HW, /* capas */
  2869.     getok /* ok_fn */
  2870. };
  2871. #ifndef MINIDIAL
  2872. static
  2873. MDMINF XJACK = /* Megahertz X-Jack */
  2874.     {
  2875.     "Megahertz X-Jack XJ3144 / CC6144",
  2876.     "ATP15", /* pulse command */
  2877.     "ATT15", /* tone command */
  2878.     35, /* dial_time */
  2879.     ",", /* pause_chars */
  2880.     2, /* pause_time */
  2881. #ifdef OS2
  2882.     "ATQ0E1V1X4N1&C1&D2\K515", /* wake_str */
  2883. #else
  2884.     "ATQ0X4N1\K515", /* wake_str */
  2885. #endif /* OS2 */
  2886.     0, /* wake_rate */
  2887.     "OK15", /* wake_prompt */
  2888.     "", /* dmode_str */
  2889.     "", /* dmode_prompt */
  2890.     "ATD%s15", /* dial_str */
  2891.     0, /* dial_rate */
  2892.     1100, /* esc_time */
  2893.     43, /* esc_char */
  2894.     "ATQ0H15", /* hup_str */
  2895.     "AT&K315", /* hwfc_str */
  2896.     "AT&K415", /* swfc_str */
  2897.     "AT&K015", /* nofc_str */
  2898.     "AT\N3&Q515", /* ec_on_str */
  2899.     "AT\N1&Q015", /* ec_off_str */
  2900.     "AT%C315", /* dc_on_str */
  2901.     "AT%C015", /* dc_off_str */
  2902.     "ATS0=115", /* aa_on_str */
  2903.     "ATS0=015", /* aa_off_str */
  2904.     "", /* sb_on_str */
  2905.     "", /* sb_off_str */
  2906.     "ATM115", /* sp_on_str */
  2907.     "ATM015", /* sp_off_str */
  2908.     "ATL115", /* vol1_str */
  2909.     "ATL215", /* vol2_str */
  2910.     "ATL315", /* vol3_str */
  2911.     "ATX315", /* ignoredt */
  2912.     "", /* ini2 */
  2913.     57600L, /* max_speed */
  2914.     CKD_AT|CKD_SB|CKD_EC|CKD_DC|CKD_HW|CKD_SW, /* capas */
  2915.     getok /* ok_fn */
  2916. };
  2917. static
  2918. MDMINF SPIRITII = /* QuickComm Spirit II */
  2919.     {
  2920.     "QuickComm Spirit II",
  2921.     "ATP15", /* pulse command */
  2922.     "ATT15", /* tone command */
  2923.     35, /* dial_time */
  2924.     ",", /* pause_chars */
  2925.     2, /* pause_time */
  2926.     "AT&F15", /* wake_str */
  2927.     0, /* wake_rate */
  2928.     "OK15", /* wake_prompt */
  2929.     "", /* dmode_str */
  2930.     "", /* dmode_prompt */
  2931.     "ATD%s15", /* dial_str */
  2932.     0, /* dial_rate */
  2933.     1100, /* esc_time */
  2934.     43, /* esc_char */
  2935.     "ATQ0H15", /* hup_str */
  2936.     "AT*F315", /* hwfc_str */
  2937.     "AT*F215", /* swfc_str */
  2938.     "AT*F015", /* nofc_str */
  2939.     "AT*E615", /* ec_on_str */
  2940.     "AT*E015", /* ec_off_str */
  2941.     "AT*E915", /* dc_on_str */
  2942.     "AT*E015", /* dc_off_str */
  2943.     "ATS0=215", /* aa_on_str */
  2944.     "ATS0=015", /* aa_off_str */
  2945.     "", /* sb_on_str */
  2946.     "", /* sb_off_str */
  2947.     "ATM115", /* sp_on_str */
  2948.     "ATM015", /* sp_off_str */
  2949.     "ATL115", /* vol1_str */
  2950.     "ATL215", /* vol2_str */
  2951.     "ATL315", /* vol3_str */
  2952.     "ATX315", /* ignoredt */
  2953.     "", /* ini2 */
  2954.     57600L, /* max_speed */
  2955.     CKD_AT|CKD_SB|CKD_EC|CKD_DC|CKD_HW|CKD_SW, /* capas */
  2956.     getok /* ok_fn */
  2957. };
  2958. static
  2959. MDMINF MONTANA = { /* Motorola Montana */
  2960.     "Motorola Montana", /* Name */
  2961.     "ATP15", /* pulse command */
  2962.     "ATT15", /* tone command */
  2963.     35, /* dial_time */
  2964.     ",", /* pause_chars */
  2965.     2, /* pause_time */
  2966. #ifdef OS2
  2967.     "ATQ0E1V1X4&S0&C1&D2\K5\V115", /* wake_str */
  2968. #else
  2969. #ifdef VMS
  2970.     "ATQ0E1X4&S1\K5\V115", /* wake_str */
  2971. #else
  2972.     "ATQ0E1X4\K5\V115", /* wake_str */
  2973. #endif /* VMS */
  2974. #endif /* OS2 */
  2975.     0, /* wake_rate */
  2976.     "OK15", /* wake_prompt */
  2977.     "", /* dmode_str */
  2978.     "", /* dmode_prompt */
  2979.     "ATD%s15", /* dial_str */
  2980.     0, /* dial_rate */
  2981.     1100, /* esc_time */
  2982.     43, /* esc_char */
  2983.     "ATQ0H015", /* hup_str */
  2984.     "AT\Q315", /* hwfc_str */
  2985.     "AT\Q115", /* swfc_str */
  2986.     "AT\Q015", /* nofc_str */
  2987.     "AT\N415", /* ec_on_str */
  2988.     "AT\N115", /* ec_off_str */
  2989.     "AT%C115", /* dc_on_str */
  2990.     "AT%C015", /* dc_off_str */
  2991.     "ATS0=115", /* aa_on_str */
  2992.     "ATS0=015", /* aa_off_str */
  2993.     "AT\J015", /* sb_on_str */
  2994.     "AT\J115", /* sb_off_str */
  2995.     "ATM115", /* sp_on_str */
  2996.     "ATM015", /* sp_off_str */
  2997.     "ATL115", /* vol1_str */
  2998.     "ATL215", /* vol2_str */
  2999.     "ATL315", /* vol3_str */
  3000.     "ATX315", /* ignoredt */
  3001.     "", /* ini2 */
  3002.     57600L, /* max_speed */
  3003.     CKD_AT|CKD_SB|CKD_EC|CKD_DC|CKD_HW|CKD_SW, /* capas */
  3004.     getok /* ok_fn */
  3005. };
  3006. static
  3007. MDMINF COMPAQ = { /* Compaq Data+Fax Modem */
  3008.     "Compaq Data+Fax Modem", /* Name */
  3009.     "ATP15", /* pulse command */
  3010.     "ATT15", /* tone command */
  3011.     35, /* dial_time */
  3012.     ",", /* pause_chars */
  3013.     2, /* pause_time */
  3014. #ifdef OS2
  3015.     "ATQ0E1V1X4&S0&C1&D215", /* wake_str */
  3016. #else
  3017. #ifdef VMS
  3018.     "ATQ0E1X4&S115", /* wake_str */
  3019. #else
  3020.     "ATQ0E1X415", /* wake_str */
  3021. #endif /* VMS */
  3022. #endif /* OS2 */
  3023.     0, /* wake_rate */
  3024.     "OK15", /* wake_prompt */
  3025.     "", /* dmode_str */
  3026.     "", /* dmode_prompt */
  3027.     "ATD%s15", /* dial_str */
  3028.     0, /* dial_rate */
  3029.     1100, /* esc_time */
  3030.     43, /* esc_char */
  3031.     "ATQ0H015", /* hup_str */
  3032.     "AT\Q315", /* hwfc_str (same as &K3) */
  3033.     "AT\Q115", /* swfc_str (same as &K4) */
  3034.     "AT\Q015", /* nofc_str (same as &K0) */
  3035.     "AT\N315", /* ec_on_str */
  3036.     "AT\N015", /* ec_off_str */
  3037.     "AT%C115", /* dc_on_str */
  3038.     "AT%C015", /* dc_off_str */
  3039.     "ATS0=115", /* aa_on_str */
  3040.     "ATS0=015", /* aa_off_str */
  3041.     "AT\N315", /* sb_on_str */
  3042.     "AT\N115", /* sb_off_str */
  3043.     "ATM115", /* sp_on_str */
  3044.     "ATM015", /* sp_off_str */
  3045.     "ATL015", /* vol1_str */
  3046.     "ATL215", /* vol2_str */
  3047.     "ATL315", /* vol3_str */
  3048.     "ATX315", /* ignoredt */
  3049.     "", /* ini2 */
  3050.     115200L, /* max_speed */
  3051.     CKD_AT|CKD_SB|CKD_EC|CKD_DC|CKD_HW|CKD_SW, /* capas */
  3052.     getok /* ok_fn */
  3053. };
  3054. static
  3055. MDMINF FUJITSU = { /* Fujitsu */
  3056.     "Fujitsu Fax/Modem Adapter", /* Name */
  3057.     "ATP15", /* pulse command */
  3058.     "ATT15", /* tone command */
  3059.     35, /* dial_time */
  3060.     ",", /* pause_chars */
  3061.     2, /* pause_time */
  3062. #ifdef OS2
  3063.     "ATQ0E1V1X4&S0&C1&D2\K5\N315", /* wake_str */
  3064. #else
  3065. #ifdef VMS
  3066.     "ATQ0E1X4&S1\K5\N315", /* wake_str */
  3067. #else
  3068.     "ATQ0E1X4\K5\N315", /* wake_str */
  3069. #endif /* VMS */
  3070. #endif /* OS2 */
  3071.     0, /* wake_rate */
  3072.     "OK15", /* wake_prompt */
  3073.     "", /* dmode_str */
  3074.     "", /* dmode_prompt */
  3075.     "ATD%s15", /* dial_str */
  3076.     0, /* dial_rate */
  3077.     1100, /* esc_time */
  3078.     43, /* esc_char */
  3079.     "ATQ0H015", /* hup_str */
  3080.     "AT&K3\Q315", /* hwfc_str */
  3081.     "AT&K4\Q115", /* swfc_str */
  3082.     "AT&K0\Q015", /* nofc_str */
  3083.     "AT\N315", /* ec_on_str */
  3084.     "AT\N015", /* ec_off_str */
  3085.     "AT%C1", /* dc_on_str */
  3086.     "AT%C0", /* dc_off_str */
  3087.     "ATS0=115", /* aa_on_str */
  3088.     "ATS0=015", /* aa_off_str */
  3089.     "AT\J015", /* sb_on_str */
  3090.     "AT\J115", /* sb_off_str */
  3091.     "ATM115", /* sp_on_str */
  3092.     "ATM015", /* sp_off_str */
  3093.     "ATL115", /* vol1_str */
  3094.     "ATL215", /* vol2_str */
  3095.     "ATL315", /* vol3_str */
  3096.     "ATX315", /* ignoredt */
  3097.     "", /* ini2 */
  3098.     115200L, /* max_speed */
  3099.     CKD_AT|CKD_SB|CKD_EC|CKD_DC|CKD_HW|CKD_SW, /* capas */
  3100.     getok /* ok_fn */
  3101. };
  3102. static
  3103. MDMINF MHZATT = /* Megahertz AT&T V.34 */
  3104.     {
  3105.     "Megahertz AT&T V.34",
  3106.     "ATP15", /* pulse command */
  3107.     "ATT15", /* tone command */
  3108.     35, /* dial_time */
  3109.     ",", /* pause_chars */
  3110.     2, /* pause_time */
  3111. #ifdef OS2
  3112.     "ATQ0E1V1X4N1&C1&D2\K515", /* wake_str */
  3113. #else
  3114.     "ATQ0X4N1\K515", /* wake_str */
  3115. #endif /* OS2 */
  3116.     0, /* wake_rate */
  3117.     "OK15", /* wake_prompt */
  3118.     "", /* dmode_str */
  3119.     "", /* dmode_prompt */
  3120.     "ATD%s15", /* dial_str */
  3121.     0, /* dial_rate */
  3122.     1100, /* esc_time */
  3123.     43, /* esc_char */
  3124.     "ATQ0H15", /* hup_str */
  3125.     "AT&K315", /* hwfc_str */
  3126.     "AT&K415", /* swfc_str */
  3127.     "AT&K015", /* nofc_str */
  3128.     "AT\N315", /* ec_on_str */
  3129.     "AT\N015", /* ec_off_str */
  3130.     "AT%C1"H315", /* dc_on_str */
  3131.     "AT%C0"H015", /* dc_off_str */
  3132.     "ATS0=115", /* aa_on_str */
  3133.     "ATS0=015", /* aa_off_str */
  3134.     "AT\J015", /* sb_on_str */
  3135.     "AT\J115", /* sb_off_str */
  3136.     "ATM115", /* sp_on_str */
  3137.     "ATM015", /* sp_off_str */
  3138.     "ATL115", /* vol1_str */
  3139.     "ATL215", /* vol2_str */
  3140.     "ATL315", /* vol3_str */
  3141.     "ATX315", /* ignoredt */
  3142.     "", /* ini2 */
  3143.     115200L, /* max_speed */
  3144.     CKD_AT|CKD_SB|CKD_EC|CKD_DC|CKD_HW|CKD_SW, /* capas */
  3145.     getok /* ok_fn */
  3146. };
  3147. static
  3148. MDMINF SUPRASON = /* SupraSonic */
  3149.     {
  3150.     "Diamond SupraSonic 288V+", /* Diamond Multimedia Systems Inc */
  3151.     "ATP15", /* pulse command */
  3152.     "ATT15", /* tone command */
  3153.     35, /* dial_time */
  3154.     ",", /* pause_chars */
  3155.     2, /* pause_time */
  3156. #ifdef OS2
  3157.     "ATQ0E1V1N1W0X4Y0&S0&C1&D215", /* wake_str */
  3158. #else
  3159. #ifdef VMS
  3160.     "ATQ0E1N1W0X4Y0&S115", /* wake_str */
  3161. #else
  3162.     "ATQ0E1N1W0X4Y015", /* wake_str */
  3163. #endif /* VMS */
  3164. #endif /* OS2 */
  3165.     0, /* wake_rate */
  3166.     "OK15", /* wake_prompt */
  3167.     "", /* dmode_str */
  3168.     "", /* dmode_prompt */
  3169.     "ATD%s15", /* dial_str */
  3170.     0, /* dial_rate */
  3171.     1100, /* esc_time */
  3172.     43, /* esc_char */
  3173.     "ATQ0H015", /* hup_str */
  3174.     "AT&K315", /* hwfc_str */
  3175.     "AT&K415", /* swfc_str */
  3176.     "AT&K15", /* nofc_str */
  3177.     "AT&Q5\N3S48=715", /* ec_on_str */
  3178.     "AT&Q0\N115", /* ec_off_str */
  3179.     "AT%C3S46=13815", /* dc_on_str */
  3180.     "AT%C0S46=13615", /* dc_off_str */
  3181.     "ATS0=115", /* aa_on_str */
  3182.     "ATS0=015", /* aa_off_str */
  3183.     "", /* sb_on_str */
  3184.     "", /* sb_off_str */
  3185.     "ATM115", /* sp_on_str */
  3186.     "ATM15", /* sp_off_str */
  3187.     "ATL15", /* vol1_str */
  3188.     "ATL215", /* vol2_str */
  3189.     "ATL315", /* vol3_str */
  3190.     "ATX315", /* ignoredt */
  3191.     "", /* ini2 */
  3192.     115200L, /* max_speed */
  3193.     CKD_AT|CKD_SB|CKD_EC|CKD_DC|CKD_HW|CKD_SW, /* capas */
  3194.     getok /* ok_fn */
  3195. };
  3196. static
  3197. MDMINF BESTDATA = /* Best Data */
  3198.     {
  3199.     "Best Data Fax Modem", /* Best Data Fax Modem */
  3200.     "ATP15", /* pulse command */
  3201.     "ATT15", /* tone command */
  3202.     35, /* dial_time */
  3203.     ",", /* pause_chars */
  3204.     2, /* pause_time */
  3205. #ifdef OS2
  3206.     "ATQ0E1V1N1W0X4Y0&S0&C1&D215", /* wake_str */
  3207. #else
  3208. #ifdef VMS
  3209.     "ATQ0E1N1W0X4Y0&S115", /* wake_str */
  3210. #else
  3211.     "ATQ0E1N1W0X4Y015", /* wake_str */
  3212. #endif /* VMS */
  3213. #endif /* OS2 */
  3214.     0, /* wake_rate */
  3215.     "OK15", /* wake_prompt */
  3216.     "", /* dmode_str */
  3217.     "", /* dmode_prompt */
  3218.     "ATD%s15", /* dial_str */
  3219.     0, /* dial_rate */
  3220.     1100, /* esc_time */
  3221.     43, /* esc_char */
  3222.     "ATQ0H015", /* hup_str */
  3223.     "AT&K315", /* hwfc_str */
  3224.     "AT&K415", /* swfc_str */
  3225.     "AT&K15", /* nofc_str */
  3226.     "AT&Q6\N315", /* ec_on_str */
  3227.     "AT&Q0\N115", /* ec_off_str */
  3228.     "AT%C315", /* dc_on_str */
  3229.     "AT%C015", /* dc_off_str */
  3230.     "ATS0=115", /* aa_on_str */
  3231.     "ATS0=015", /* aa_off_str */
  3232.     "AT\N315", /* sb_on_str */
  3233.     "AT\N015", /* sb_off_str */
  3234.     "ATM115", /* sp_on_str */
  3235.     "ATM015", /* sp_off_str */
  3236.     "ATL115", /* vol1_str */
  3237.     "ATL215", /* vol2_str */
  3238.     "ATL315", /* vol3_str */
  3239.     "ATX315", /* ignoredt */
  3240.     "", /* ini2 */
  3241.     57600L, /* max_speed */
  3242.     CKD_AT|CKD_SB|CKD_EC|CKD_DC|CKD_HW|CKD_SW, /* capas */
  3243.     getok /* ok_fn */
  3244. };
  3245. static
  3246. MDMINF ATT1900 = /* AT&T Secure Data STU III 1900 */
  3247.     {
  3248.     "AT&T Secure Data STU III Model 1900", /* name */
  3249.     "", /* pulse command */
  3250.     "", /* tone command */
  3251.     35, /* dial_time */
  3252.     ",", /* pause_chars */
  3253.     2, /* pause_time */
  3254. #ifdef OS2
  3255.     "ATQ0E1V1X415", /* wake_str */
  3256. #else
  3257.     "ATQ0E1X415", /* wake_str */
  3258. #endif /* OS2 */
  3259.     0, /* wake_rate */
  3260.     "OK15", /* wake_prompt */
  3261.     "", /* dmode_str */
  3262.     "", /* dmode_prompt */
  3263.     "ATD%s15", /* dial_str */
  3264.     0, /* dial_rate */
  3265.     1100, /* esc_time */
  3266.     43, /* esc_char */
  3267.     "ATQ0H015", /* hup_str */
  3268.     "", /* hwfc_str */
  3269.     "", /* swfc_str */
  3270.     "", /* nofc_str */
  3271.     "", /* ec_on_str */
  3272.     "", /* ec_off_str */
  3273.     "", /* dc_on_str */
  3274.     "", /* dc_off_str */
  3275.     "ATS0=115", /* aa_on_str */
  3276.     "ATS0=015", /* aa_off_str */
  3277.     "", /* sb_on_str */
  3278.     "", /* sb_off_str */
  3279.     "", /* sp_on_str */
  3280.     "", /* sp_off_str */
  3281.     "", /* vol1_str */
  3282.     "", /* vol2_str */
  3283.     "", /* vol3_str */
  3284.     "", /* ignoredt */
  3285.     "", /* ini2 */
  3286.     9600L, /* max_speed */
  3287.     CKD_AT|CKD_SB|CKD_HW, /* capas */
  3288.     getok /* ok_fn */
  3289. };
  3290. /*
  3291.   Experimentation showed that hardly any of the documented commands did
  3292.   anything other that print ERROR.  At first there was no communication at
  3293.   all at 9600 bps -- turns out the interface speed was stuck at 2400.
  3294.   ATS28=130 (given at 2400 bps) allowed it to work at 9600.
  3295. */
  3296. static
  3297. MDMINF ATT1910 = /* AT&T Secure Data STU III 1910 */
  3298.     { /* Adds V.32bis, V.42, V.42bis */
  3299.     "AT&T Secure Data STU III Model 1910", /* name */
  3300. /* Believe it or not, "ATT" and "ATP" result in ERROR */
  3301.     "", /* pulse command */
  3302.     "", /* tone command */
  3303.     35, /* dial_time */
  3304.     ",", /* pause_chars */
  3305.     2, /* pause_time */
  3306. #ifdef OS2
  3307.     "ATQ0E1V1X415", /* wake_str */
  3308. #else
  3309.     "ATQ0E1X415", /* wake_str */
  3310. #endif /* OS2 */
  3311.     0, /* wake_rate */
  3312.     "OK15", /* wake_prompt */
  3313.     "", /* dmode_str */
  3314.     "", /* dmode_prompt */
  3315.     "ATD%s15", /* dial_str */
  3316.     0, /* dial_rate */
  3317.     1100, /* esc_time */
  3318.     43, /* esc_char */
  3319.     "ATQ0H015", /* hup_str */
  3320.     "", /* hwfc_str */
  3321.     "", /* swfc_str */
  3322.     "", /* nofc_str */
  3323. #ifdef COMMENT
  3324. /* These are evidently read-only registers */
  3325.     "ATS46=138S47=015", /* ec_on_str */
  3326.     "ATS46=138S47=12815", /* ec_off_str */
  3327.     "ATS46=138S47=015", /* dc_on_str */
  3328.     "ATS46=138S47=12815", /* dc_off_str */
  3329. #else
  3330.     "",
  3331.     "",
  3332.     "",
  3333.     "",
  3334. #endif /* COMMENT */
  3335.     "ATS0=115", /* aa_on_str */
  3336.     "ATS0=015", /* aa_off_str */
  3337.     "", /* sb_on_str */
  3338.     "", /* sb_off_str */
  3339.     "", /* sp_on_str */
  3340.     "", /* sp_off_str */
  3341.     "", /* vol1_str */
  3342.     "", /* vol2_str */
  3343.     "", /* vol3_str */
  3344.     "", /* ignoredt */
  3345.     "", /* ini2 */
  3346.     9600L, /* max_speed */
  3347.     CKD_AT|CKD_SB|CKD_EC|CKD_DC|CKD_HW, /* capas */
  3348.     getok /* ok_fn */
  3349. };
  3350. static
  3351. MDMINF KEEPINTOUCH = /* AT&T KeepinTouch Card Modem */
  3352.     {
  3353.     "AT&T KeepinTouch V.32bis Card Modem", /* Name */
  3354.     "ATP15", /* pulse command */
  3355.     "ATT15", /* tone command */
  3356.     35, /* dial_time */
  3357.     ",", /* pause_chars */
  3358.     2, /* pause_time */
  3359. #ifdef OS2
  3360. /* This used to include &C1&S0&D2+Q0 but that gives ERROR */
  3361.     "ATQ0E1V1X4&S0&C1&D2\K515", /* wake_str */
  3362. #else
  3363. #ifdef VMS
  3364.     "ATQ0E1X4&S1\K515", /* wake_str */
  3365. #else
  3366.     "ATQ0E1X4\K515", /* wake_str */
  3367. #endif /* VMS */
  3368. #endif /* OS2 */
  3369.     0, /* wake_rate */
  3370.     "OK15", /* wake_prompt */
  3371.     "", /* dmode_str */
  3372.     "", /* dmode_prompt */
  3373.     "ATD%s15", /* dial_str */
  3374.     0, /* dial_rate */
  3375.     1100, /* esc_time */
  3376.     43, /* esc_char */
  3377.     "ATQ0H015", /* hup_str */
  3378.     "AT\Q315", /* hwfc_str */
  3379.     "AT\Q1\X015", /* swfc_str */
  3380.     "AT\Q015", /* nofc_str */
  3381.     "AT\N3-J115", /* ec_on_str */
  3382.     "AT\N115", /* ec_off_str */
  3383.     "AT%C3"H315", /* dc_on_str */
  3384.     "AT%C0"H015", /* dc_off_str */
  3385.     "ATS0=115", /* aa_on_str */
  3386.     "ATS0=015", /* aa_off_str */
  3387.     "ATN0\J015", /* sb_on_str */
  3388.     "ATN1\J115", /* sb_off_str */
  3389.     "ATM115", /* sp_on_str */
  3390.     "ATM015", /* sp_off_str */
  3391.     "", /* vol1_str */
  3392.     "", /* vol2_str */
  3393.     "", /* vol3_str */
  3394.     "ATX315", /* ignoredt */
  3395.     "", /* ini2 */
  3396.     57600L, /* max_speed */
  3397.     CKD_AT|CKD_SB|CKD_EC|CKD_DC|CKD_HW|CKD_SW, /* capas */
  3398.     getok /* ok_fn */
  3399. };
  3400. static
  3401. MDMINF ROLM_AT = /* Rolm data phone with AT command set */
  3402.     {
  3403.     "Rolm 244PC or 600 Series with AT Command Set",
  3404.     "", /* pulse command */
  3405.     "", /* tone command */
  3406.     35, /* dial_time */
  3407.     ",", /* pause_chars */
  3408.     2, /* pause_time */
  3409. #ifdef OS2
  3410.     "ATE1Q0V115", /* wake_str */
  3411. #else
  3412.     "ATQ015", /* wake_str */
  3413. #endif /* OS2 */
  3414.     0, /* wake_rate */
  3415.     "OK15", /* wake_prompt */
  3416.     "", /* dmode_str */
  3417.     "", /* dmode_prompt */
  3418.     "ATDT%s15", /* dial_str -- always Tone */
  3419.     0, /* dial_rate */
  3420.     1100, /* esc_time */
  3421.     43, /* esc_char */
  3422.     "ATQ0H015", /* hup_str */
  3423.     "", /* hwfc_str */
  3424.     "", /* swfc_str */
  3425.     "", /* nofc_str */
  3426.     "", /* ec_on_str */
  3427.     "", /* ec_off_str */
  3428.     "", /* dc_on_str */
  3429.     "", /* dc_off_str */
  3430.     "ATS0=115", /* aa_on_str */
  3431.     "ATS0=015", /* aa_off_str */
  3432.     "", /* sb_on_str */
  3433.     "", /* sb_off_str */
  3434.     "", /* sp_on_str */
  3435.     "", /* sp_off_str */
  3436.     "", /* vol1_str */
  3437.     "", /* vol2_str */
  3438.     "", /* vol3_str */
  3439.     "", /* ignoredt */
  3440.     "", /* ini2 */
  3441.     19200L, /* max_speed */
  3442.     CKD_AT, /* capas */
  3443.     getok /* ok_fn */
  3444. };
  3445. static
  3446. MDMINF ATLAS = /* Atlas / Newcom ixfC 33.6 */
  3447.     {
  3448.     "Atlas / Newcom 33600ixfC Data/Fax Modem", /* Name */
  3449.     "ATP15", /* pulse command */
  3450.     "ATT15", /* tone command */
  3451.     35, /* dial_time */
  3452.     ",", /* pause_chars */
  3453.     2, /* pause_time */
  3454. #ifdef OS2
  3455.     "ATZ0&FQ0V1&C1&D215", /* wake_str */
  3456. #else
  3457.     "ATZ0&FQ0V115", /* wake_str */
  3458. #endif /* OS2 */
  3459.     0, /* wake_rate */
  3460.     "OK15", /* wake_prompt */
  3461.     "", /* dmode_str */
  3462.     "", /* dmode_prompt */
  3463.     "ATD%s15", /* dial_str */
  3464.     0, /* dial_rate */
  3465.     1100, /* esc_time */
  3466.     43, /* esc_char */
  3467.     "ATQ0H015", /* hup_str */
  3468.     "AT&K315", /* hwfc_str */
  3469.     "AT&K415", /* swfc_str */
  3470.     "AT&K015", /* nofc_str */
  3471.     "AT"H315", /* ec_on_str */
  3472.     "AT"H015", /* ec_off_str */
  3473.     "AT%C115", /* dc_on_str */
  3474.     "AT%C015", /* dc_off_str */
  3475.     "ATS0=115", /* aa_on_str */
  3476.     "ATS0=015", /* aa_off_str */
  3477.     "ATN0\J015", /* sb_on_str */
  3478.     "ATN1\J115", /* sb_off_str */
  3479.     "ATM115", /* sp_on_str */
  3480.     "ATM015", /* sp_off_str */
  3481.     "ATL115", /* vol1_str */
  3482.     "ATL215", /* vol2_str */
  3483.     "ATL315", /* vol3_str */
  3484.     "ATX315", /* ignoredt */
  3485.     "", /* ini2 */
  3486.     115200L, /* max_speed */
  3487.     CKD_AT|CKD_SB|CKD_EC|CKD_DC|CKD_HW|CKD_SW, /* capas */
  3488.     getok /* ok_fn */
  3489. };
  3490. static
  3491. MDMINF CODEX = { /* Motorola Codex */
  3492.     "Motorola Codex 326X Series", /* Name - AT&V to see settings */
  3493.     "ATP15", /* pulse command */
  3494.     "ATT15", /* tone command */
  3495.     35, /* dial_time */
  3496.     ",", /* pause_chars */
  3497.     2, /* pause_time */
  3498. #ifdef OS2
  3499.     /* &M0=Async (not sync) */
  3500.     /* *MM0=Automatic modulation negotiation */
  3501.     /* *DE22=Automatic data rate */
  3502.     "ATZQ0E1V1X4Y0*DE22*MM0&C1&M0&S0&D215", /* wake_str */
  3503. #else
  3504. #ifdef VMS
  3505.     "ATZQ0E1V1X4Y0*DE22*MM0&C1&M0&S115", /* wake_str */
  3506. #else
  3507.     "ATZQ0E1V1X4Y0*DE22*MM0&C1&M015", /* wake_str */
  3508. #endif /* VMS */
  3509. #endif /* OS2 */
  3510.     0, /* wake_rate */
  3511.     "OK15", /* wake_prompt */
  3512.     "", /* dmode_str */
  3513.     "", /* dmode_prompt */
  3514.     "ATD%s15", /* dial_str */
  3515.     0, /* dial_rate */
  3516.     1100, /* esc_time */
  3517.     43, /* esc_char */
  3518.     "ATQ0H015", /* hup_str */
  3519.     "AT*MF1*FL315", /* hwfc_str */
  3520.     "AT*MF1*FL115", /* swfc_str */
  3521.     "AT*MF0*FL015", /* nofc_str */
  3522.     "AT*EC0*SM3*SC015", /* ec_on_str */
  3523.     "AT*SM015", /* ec_off_str */
  3524.     "AT*DC115", /* dc_on_str */
  3525.     "AT*DC015", /* dc_off_str */
  3526.     "AT*AA5S0=115", /* aa_on_str */
  3527.     "AT*AA5S0=015", /* aa_off_str */
  3528.     "AT*SC115", /* sb_on_str */
  3529.     "AT*SC015", /* sb_off_str */
  3530.     "ATM115", /* sp_on_str */
  3531.     "ATM015", /* sp_off_str */
  3532.     "ATL115", /* vol1_str */
  3533.     "ATL215", /* vol2_str */
  3534.     "ATL315", /* vol3_str */
  3535.     "ATX3*BD215", /* ignoredt */
  3536.     "", /* ini2 */
  3537.     115200L, /* max_speed */
  3538.     CKD_AT|CKD_SB|CKD_EC|CKD_DC|CKD_HW|CKD_SW, /* capas */
  3539.     getok /* ok_fn */
  3540. };
  3541. static
  3542. MDMINF MT5634ZPX = /* Multitech */
  3543.     {
  3544.     "Multitech MT5634ZPX", /* name */
  3545.     "ATP15", /* pulse command */
  3546.     "ATT15", /* tone command */
  3547.     35, /* dial_time */
  3548.     ",", /* pause_chars */
  3549.     2, /* pause_time */
  3550. #ifdef OS2
  3551.     "ATE1Q0V1X4&S0&C1&D2&Q015", /* wake_str */
  3552. #else
  3553. #ifdef VMS
  3554.     "ATQ0E1X4&S1&Q015", /* wake_str */
  3555. #else
  3556.     "ATQ0E1X4&Q015", /* wake_str */
  3557. #endif /* VMS */
  3558. #endif /* OS2 */
  3559.     0, /* wake_rate */
  3560.     "OK15", /* wake_prompt */
  3561.     "", /* dmode_str */
  3562.     "", /* dmode_prompt */
  3563.     "ATD%s15", /* dial_str */
  3564.     0, /* dial_rate */
  3565.     1100, /* esc_time */
  3566.     43, /* esc_char */
  3567.     "ATQ0H015", /* hup_str */
  3568.     "AT&K315", /* hwfc_str */
  3569.     "AT&K415", /* swfc_str */
  3570.     "AT&K015", /* nofc_str */
  3571.     "AT\N315", /* ec_on_str */
  3572.     "AT\N115", /* ec_off_str */
  3573.     "AT%C115", /* dc_on_str */
  3574.     "AT%C015", /* dc_off_str */
  3575.     "ATS0=115", /* aa_on_str */
  3576.     "ATS0=015", /* aa_off_str */
  3577.     "AT\J015", /* sb_on_str */
  3578.     "AT\J115", /* sb_off_str (NOT SUPPORTED) */
  3579.     "ATM115", /* sp_on_str */
  3580.     "ATM015", /* sp_off_str */
  3581.     "ATL115", /* vol1_str */
  3582.     "ATL215", /* vol2_str */
  3583.     "ATL315", /* vol3_str */
  3584.     "ATX315", /* ignoredt */
  3585.     "", /* ini2 */
  3586.     115200L, /* max_speed */
  3587.     CKD_AT|CKD_SB|CKD_EC|CKD_DC|CKD_HW|CKD_SW, /* capas */
  3588.     getok /* ok_fn */
  3589. };
  3590. #endif /* MINIDIAL */
  3591. /* END MDMINF STRUCT DEFINITIONS */
  3592. /*
  3593.   Table to convert modem numbers to MDMINF struct pointers.
  3594.   The entries MUST be in ascending order by modem number, without any
  3595.   "gaps" in the numbers, and starting from one (1).
  3596. */
  3597. MDMINF *modemp[] = {
  3598. #ifdef MINIDIAL
  3599.     NULL, /*  0 */
  3600.     &CCITT, /*  1 */
  3601.     &HAYES, /*  2 */
  3602.     &UNKNOWN, /*  3 */
  3603.     &DUMMY, /*  4 */
  3604.     &GENERIC, /*  5 */
  3605.     &ITUTV250 /*  6 */
  3606. #else  /* Not MINIDIAL */
  3607.     NULL, /*  0 */
  3608.     &ATTDTDM, /*  1 */
  3609.     &ATTISN, /*  2 */
  3610.     &ATTMODEM, /*  3 */
  3611.     &CCITT, /*  4 */
  3612. #ifdef OLDMODEMS
  3613.     &CERMETEK, /*  5 */
  3614.     &DF03, /*  6 */
  3615.     &DF100, /*  7 */
  3616.     &DF200, /*  8 */
  3617.     &GDC, /*  9 */
  3618. #else
  3619.     NULL,
  3620.     NULL,
  3621.     NULL,
  3622.     NULL,
  3623.     NULL,
  3624. #endif /* OLDMODEMS */
  3625.     &HAYES, /* 10 */
  3626. #ifdef OLDMODEMS
  3627.     &PENRIL, /* 11 */
  3628.     &RACAL, /* 12 */
  3629. #else
  3630.     NULL,
  3631.     NULL,
  3632. #endif /* OLDMODEMS */
  3633.     &UNKNOWN, /* 13 */
  3634. #ifdef OLDMODEMS
  3635.     &VENTEL, /* 14 */
  3636.     &CONCORD, /* 15 */
  3637. #else
  3638.     NULL,
  3639.     NULL,
  3640. #endif /* OLDMODEMS */
  3641.     &DUMMY, /* 16 */
  3642.     &ROLM, /* 17 */
  3643. #ifdef OLDMODEMS
  3644.     &MICROCOM, /* 18 */
  3645. #else
  3646.     NULL,
  3647. #endif /* OLDMODEMS */
  3648.     &USR, /* 19 USR Courier and Sportster */
  3649.     &OLDTB, /* 20 Old Telebits */
  3650.     &DIGITEL, /* 21 Digitel CCITT */
  3651.     &H_1200, /* 22 Hayes 1200 */
  3652.     &H_ULTRA, /* 23 Hayes Ultra */
  3653.     &H_ACCURA, /* 24 Hayes Optima */
  3654.     &PPI, /* 25 PPI */
  3655.     &DATAPORT, /* 26 Dataport */
  3656.     &BOCA, /* 27 Boca */
  3657.     &MOTOROLA, /* 28 Motorola UDS MOTOROLA */
  3658.     NULL, /* 29 Digicomm */
  3659.     NULL, /* 30 Dynalink */
  3660.     &INTEL, /* 31 Intel */
  3661.     &UCOM_AT, /* 32 Microcom in AT mode */
  3662.     &MULTITECH, /* 33 Multitech */
  3663.     &SUPRA, /* 34 Supra */
  3664.     &ZOLTRIX, /* 35 Zoltrix */
  3665.     &ZOOM, /* 36 Zoom */
  3666.     &ZYXEL, /* 37 ZyXEL */
  3667.     &DUMMY, /* 38 TAPI */
  3668.     &NEWTB, /* 39 New-Telebit */
  3669.     &MAXTECH, /* 40 MaxTech */
  3670.     &DUMMY, /* 41 User-defined */
  3671.     &RWV32, /* 42 Rockwell V.32 */
  3672.     &RWV32B, /* 43 Rockwell V.32bis */
  3673.     &RWV34, /* 44 Rockwell V.34 */
  3674.     &MWAVE, /* 45 IBM Mwave */
  3675.     &TELEPATH, /* 46 Gateway 2000 Telepath II 28.8 */
  3676.     &MICROLINK, /* 47 MicroLink modems */
  3677.     &CARDINAL, /* 48 Cardinal */
  3678.     &GENERIC, /* 49 Generic high-speed */
  3679.     &XJACK, /* 50 Megahertz-Xjack */
  3680.     &SPIRITII, /* 51 QuickComm Spirit II */
  3681.     &MONTANA, /* 52 Motorola Montana */
  3682.     &COMPAQ, /* 53 Compaq Data+Fax */
  3683.     &FUJITSU, /* 54 Fujitsu */
  3684.     &MHZATT, /* 55 Megahertz AT&T V.34 */
  3685.     &SUPRASON, /* 56 Suprasonic */
  3686.     &BESTDATA, /* 57 Best Data */
  3687.     &ATT1900, /* 58 AT&T Secure Data STU III 1900 */
  3688.     &ATT1910, /* 59 AT&T Secure Data STU III 1910 */
  3689.     &KEEPINTOUCH, /* 60 AT&T KeepinTouch */
  3690.     &USRX2, /* 61 USR XJ-1560 X2 */
  3691.     &ROLM_AT, /* 62 Rolm with AT command set */
  3692.     &ATLAS, /* 63 Atlas / Newcom */
  3693.     &CODEX, /* 64 Motorola Codex */
  3694.     &MT5634ZPX, /* 65 Multitech MT5634ZPX */
  3695.     &ULINKV250, /* 66 Microlink V.250 56K */
  3696.     &ITUTV250, /* 67 Generic ITU-T V.250 */
  3697.     &RWV90, /* 68 Rockwell V.90 56K */