home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 October / usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso / misc / volume32 / ecu / part28 < prev    next >
Text File  |  1992-09-14  |  58KB  |  1,805 lines

  1. Newsgroups: comp.sources.misc
  2. From: wht@n4hgf.Mt-Park.GA.US (Warren Tucker)
  3. Subject:  v32i063:  ecu - ECU Asynchronous Communications v3.20, Part28/40
  4. Message-ID: <1992Sep14.144910.22312@sparky.imd.sterling.com>
  5. X-Md4-Signature: 5f1d2be75371825ee3348f83c2fbca6b
  6. Date: Mon, 14 Sep 1992 14:49:10 GMT
  7. Approved: kent@sparky.imd.sterling.com
  8.  
  9. Submitted-by: wht@n4hgf.Mt-Park.GA.US (Warren Tucker)
  10. Posting-number: Volume 32, Issue 63
  11. Archive-name: ecu/part28
  12. Environment: SCO,XENIX,ISC,SUNOS,SYSVR4,HDB,Curses
  13. Supersedes: ecu: Volume 21, Issue 53-89
  14.  
  15. ---- Cut Here and feed the following to sh ----
  16. #!/bin/sh
  17. # this is ecu320.28 (part 28 of ecu320)
  18. # do not concatenate these parts, unpack them in order with /bin/sh
  19. # file gendial/dceHA24.c continued
  20. #
  21. if test ! -r _shar_seq_.tmp; then
  22.     echo 'Please unpack part 1 first!'
  23.     exit 1
  24. fi
  25. (read Scheck
  26.  if test "$Scheck" != 28; then
  27.     echo Please unpack part "$Scheck" next!
  28.     exit 1
  29.  else
  30.     exit 0
  31.  fi
  32. ) < _shar_seq_.tmp || exit 1
  33. if test ! -f _shar_wnt_.tmp; then
  34.     echo 'x - still skipping gendial/dceHA24.c'
  35. else
  36. echo 'x - continuing file gendial/dceHA24.c'
  37. sed 's/^X//' << 'SHAR_EOF' >> 'gendial/dceHA24.c' &&
  38. X/*:07-25-1991-12:58-wht@n4hgf-ECU release 3.10 */
  39. X/*:04-16-1991-18:18-wht@n4hgf-creation from template */
  40. X
  41. X#include "dialer.h"
  42. X
  43. X/*
  44. X * DCE_DTR_low_msec - milliseconds to hold DTR low to ensure DCE
  45. X *                    sees the transition; this value may be changed
  46. X *                    as necessary before each call to lflash_DTR(),
  47. X * but, generally, a constant value will do.
  48. X */
  49. Xlong DCE_DTR_low_msec = 750L;
  50. X
  51. X/*
  52. X * DCE_DTR_high_msec - milliseconds DTR must remain high before the
  53. X *                     DCE may be expected to be ready to be commanded
  54. X */
  55. Xlong DCE_DTR_high_msec = 1500L;
  56. X
  57. X/*
  58. X * DCE_write_pace_msec - milliseconds to pause between each character
  59. X *                       sent to the DCE (zero if streaming I/O is
  60. X *                       permitted); this value may be changed as
  61. X * necessary before each call to lwrite(), but, generally, a constant
  62. X * value will do.  Note that this value is used to feed a value to Nap(),
  63. X * which has a granularity of .010 seconds on UNIX/386, .020 on XENIX/286
  64. X * and .050 seconds on XENIX/86.
  65. X */
  66. Xlong DCE_write_pace_msec = 40;
  67. X
  68. X/*
  69. X * DCE_name     - short name for DCE
  70. X * DCE_revision - revision number for this module
  71. X */
  72. Xchar *DCE_name = "generic AT-cmd 2400";
  73. Xchar *DCE_revision = "1.21";
  74. X
  75. X/*
  76. X * DCE_hangup_CBAUD - baud rate to use for hanging up DCE
  77. X *                    and readying it for dial in access
  78. X *                    (BXXX mask); use a value of zero if the speed
  79. X *                    specified by the invoker is to be used.
  80. X * This value is useful for DCEs such as the early Hayes 2400
  81. X * which are so unfortunately compatible with their 1200 predecessor
  82. X * that they refuse to answer at 2400 baud unless you last spoke to
  83. X * them at that rate. For such bad boys, use B2400 below.
  84. X */
  85. Xint DCE_hangup_CBAUD = B2400;
  86. X
  87. X/*
  88. X * DCE_results - a table of DCE response strings and a token
  89. X *               code for each; when you call lread() or lread_ignore(),
  90. X *               if the read routine detects one of the strings,
  91. X * the appropriate code is returned.  If no string matches, then
  92. X * lread()/lread_ignore examines the DCE result string for a
  93. X * numeric value; if one is found, the numeric value or'd with
  94. X * 0x4000 is returned (in this way, e.g., you can read "modem
  95. X * S registers."  If nothing agrees with this search, lread()
  96. X * will abort the program with RC|FAIL|RCE_TIMOUT, lread_ignore()
  97. X * will return -1.  You may use any value between 0 and 0x3FFFFFFF.
  98. X * This module is the only consumer  of the codes, although they
  99. X * are decoded by gendial.c's _lread().
  100. X *
  101. X * If one possible result is an "early substring" of another, like
  102. X * "CONNECT" is of "CONNECT 1200", then put such results later in the
  103. X * table than the larger result.
  104. X *
  105. X */
  106. X#define rfConnect        0x00400000
  107. X#define rfMASK            0x000000FF
  108. X
  109. X#define rOk                0
  110. X#define rNoCarrier        1
  111. X#define rError            2
  112. X#define rNoDialTone        3
  113. X#define rBusy            4
  114. X#define rNoAnswer        5
  115. X#define rConnect300        (7 | rfConnect)
  116. X#define rConnect1200    (8 | rfConnect)
  117. X#define rConnect2400    (9 | rfConnect)
  118. X
  119. XDCE_RESULT DCE_results[] =
  120. X{
  121. X    { "OK",                        rOk,            },
  122. X    { "NO CARRIER",                rNoCarrier,        },
  123. X    { "ERROR",                    rError            },
  124. X    { "NO DIALTONE",            rNoDialTone,    },
  125. X    { "BUSY",                    rBusy            },
  126. X    { "NO ANSWER",                rNoAnswer        },
  127. X    { "CONNECT 1200",            rConnect1200    },
  128. X    { "CONNECT 2400",            rConnect2400    },
  129. X    { "CONNECT",                rConnect300        },
  130. X    { (char *)0,                -1                }        /* end table */
  131. X};
  132. X
  133. X/*+-------------------------------------------------------------------------
  134. X    DCE_baud_to_CBAUD(baud) - check for valid baud rates supported by DCE
  135. X
  136. X  DCE dependent function must validate baud rates supported by DCE
  137. X  returns baud rate in struct termio c_cflag fashion
  138. X  or terminates program with error
  139. X--------------------------------------------------------------------------*/
  140. Xint
  141. XDCE_baud_to_CBAUD(baud)
  142. Xunsigned int baud;
  143. X{
  144. X    switch(baud)
  145. X    {
  146. X        case 50:   return(B50);        /* delete the ones you dont handle */
  147. X        case 75:   return(B75);
  148. X        case 110:  return(B110);
  149. X        case 134:  return(B134);
  150. X        case 150:  return(B150);
  151. X        case 300:  return(B300);
  152. X        case 1200: return(B1200);
  153. X        case 2400: return(B2400);
  154. X        case 4800: return(B4800);
  155. X        case 9600: return(B9600);
  156. X
  157. X#if defined(B19200)
  158. X        case 19200: return(B19200);
  159. X#else
  160. X#ifdef EXTA
  161. X        case 19200: return(EXTA);
  162. X#endif
  163. X#endif
  164. X
  165. X#if defined(B38400)
  166. X        case 38400: return(B38400);
  167. X#else
  168. X#ifdef EXTB
  169. X        case 38400: return(EXTB);
  170. X#endif
  171. X#endif
  172. X
  173. X    }
  174. X    myexit(RC_FAIL | RCE_SPEED);
  175. X#if defined(OPTIMIZE) || defined(__OPTIMIZE__)    /* don't complain */
  176. X    return(0);    /* keep gcc from complaining about no rtn at end */
  177. X#endif
  178. X}    /* end of DCE_baud_to_CBAUD */
  179. X
  180. X/*+-------------------------------------------------------------------------
  181. X    DCE_hangup() - issue hangup command to DCE
  182. X
  183. XThis function should do whatever is necessary to ensure
  184. X1) any active connection is terminated
  185. X2) the DCE is ready to receive an incoming call if DTR is asserted
  186. X3) the DCE will not accept an incoming call if DTR is false
  187. X
  188. XThe function should return when done.
  189. X
  190. XYou must set any switches necessary to make modem hang up on loss of DTR
  191. X--------------------------------------------------------------------------*/
  192. Xvoid
  193. XDCE_hangup()
  194. X{
  195. Xint itmp;
  196. Xint maxretry = 4;
  197. X
  198. X    DEBUG(1,"--> hanging up %s\n",dce_name);
  199. X
  200. X    lflash_DTR();
  201. X
  202. X    /*
  203. X     * set up modem
  204. X     */
  205. X    for(itmp = 0; itmp < maxretry; itmp++)
  206. X    {
  207. X        lwrite("ATS0=1M0Q0V1X3\r");
  208. X        if(lread(5) == rOk)
  209. X            break;
  210. X    }
  211. X    if(itmp == maxretry)
  212. X    {
  213. X        DEBUG(1,"failed to reset modem\n",0);
  214. X        myexit(RC_FAIL | RCE_TIMOUT);
  215. X    }
  216. X
  217. X    /*
  218. X     * shut up - no result codes
  219. X     */
  220. X    lwrite("ATQ1\r");
  221. X
  222. X}    /* end of DCE_hangup */
  223. X
  224. X/*+-------------------------------------------------------------------------
  225. X    DCE_dial(telno) - dial a remote DCE
  226. X
  227. XThis function should connect to the remote DCE and use any success
  228. Xindication to modify the tty baud rate if necessary before returning.
  229. X
  230. XUpon successful connection, return 0.
  231. X
  232. XUpon unsuccessful connection, return RC_FAIL or'd with an appropriate
  233. XRCE_XXX value from dialer.h.
  234. X
  235. Xlwrite() is used to write to the DCE.
  236. X
  237. Xlread() and lread_ignore() are used to read from the DCE.  Read timeouts
  238. Xfrom calling lread() will result automatically in the proper error
  239. Xtermination of the program.  Read timeouts from calling lread_ignore()
  240. Xreturn -1; you handle the execption here.
  241. X
  242. XAny necessary coding of phone numbers, switch settings or other
  243. Xconfiguration necessary for this function to succeed should be
  244. Xdocumented at the top of the module.
  245. X--------------------------------------------------------------------------*/
  246. Xint
  247. XDCE_dial(telno_str)
  248. Xchar *telno_str;
  249. X{
  250. Xchar cmd[128];
  251. Xchar phone[50];
  252. Xint timeout;
  253. Xint result;
  254. Xchar *cptr;
  255. Xchar *dialout_default = "ATS0=0S7=40S2=43Q0V1E0X3\r";
  256. X#define MDVALID     "0123456789NnSs*#,!/()-"
  257. Xint itmp;
  258. Xint maxretry = 4;
  259. X
  260. X    translate("=,-,",telno_str);
  261. X    if(strspn(telno_str,MDVALID) != strlen(telno_str))
  262. X    {
  263. X        DEBUG(1,"phone number has invalid characters\n",0);
  264. X        return(RC_FAIL | RCE_PHNO);
  265. X    }
  266. X    if(decode_phone_number(telno_str,phone,sizeof(phone)))
  267. X    {
  268. X        DEBUG(1,"phone number too long\n",0);
  269. X        return(RC_FAIL | RCE_PHNO);
  270. X    }
  271. X
  272. X    /*
  273. X     * wake up modem
  274. X     */
  275. X    DEBUG(6,"--> waking up modem\n",0);
  276. X    for(itmp = 0; itmp < maxretry; itmp++)
  277. X    {
  278. X        lwrite(dialout_default);
  279. X        if(lread(5) == rOk)
  280. X            break;
  281. X    }
  282. X    if(itmp == maxretry)
  283. X    {
  284. X        DEBUG(1,"DIAL INIT FAILED\n",0);
  285. X        myexit(RC_FAIL | RCE_TIMOUT);
  286. X    }
  287. X
  288. X    /*
  289. X     * calculate a timeout for the connect
  290. X     * allow a minimum of 40 seconds
  291. X     * if long distance (North American calculation here)
  292. X     * make it 132 (S7 is calculated as timeout * .9)
  293. X     */
  294. X    timeout = 40;
  295. X    if((phone[0] == '1') && (phone[0] != '0'))
  296. X        timeout = 132;
  297. X    if((timeout < 90) && (dialer_codes['V' - 'A'] || dialer_codes['P' - 'A']))
  298. X        timeout = 90;
  299. X    for(cptr = phone; cptr = strchr(cptr,','); cptr++)
  300. X        timeout += 2;    /* add extra time for pause characters */
  301. X    DEBUG(6,"wait for connect = %d seconds\n",timeout);
  302. X
  303. X/* indicate non-root should not see DTE->DCE traffic */
  304. X    secure = 1;
  305. X
  306. X/*
  307. X * build and issue the actual dialing command
  308. X * if root, let him see number, otherwise just say "remote system"
  309. X */
  310. X    DEBUG(1,"--> dialing %s\n", (!ecu_calling & uid)
  311. X        ? "remote system" : telno_str);
  312. X#ifdef WHT
  313. X    if(!strncmp(*gargv,"ECU",3))
  314. X        dialer_codes['S' - 'A'] = 1;
  315. X#endif
  316. X    sprintf(cmd,"ATM%dS7=%dDT%s\r",
  317. X        ((dialer_codes['S' - 'A']) && !(dialer_codes['N' - 'A'])) ? 1 : 0,
  318. X        (timeout * 9) / 10,
  319. X        phone);
  320. X
  321. X    /* cmd string can only be 40 characters including "AT" */
  322. X    if(strlen(cmd) > 40)
  323. X    {
  324. X        DEBUG(1,"phone number string too long\n",0);
  325. X        cleanup(RC_FAIL | RCE_PHNO);
  326. X    }
  327. X    lwrite(cmd);
  328. X
  329. X/* indicate non-root can see DTE->DCE traffic */
  330. X    secure = 0;
  331. X
  332. X/* wait for connect */
  333. X    result = lread(timeout);
  334. X    if(!(result & rfConnect))
  335. X    {
  336. X        switch(result & rfMASK)
  337. X        {
  338. X        case rNoCarrier:
  339. X            return(RC_FAIL | RCE_NOCARR);
  340. X        case rNoDialTone:
  341. X            return(RC_FAIL | RCE_NOTONE);
  342. X        case rBusy:
  343. X            return(RC_FAIL | RCE_BUSY);
  344. X        case rNoAnswer:
  345. X            return(RC_FAIL | RCE_ANSWER);
  346. X        case rError:
  347. X        default:
  348. X            return(RC_FAIL | RCE_NULL);
  349. X        }
  350. X    }
  351. X
  352. X/* indicate non-root can see DTE->DCE traffic */
  353. X    secure = 0;
  354. X    return(0);        /* succeeded */
  355. X
  356. X}    /* end of DCE_dial */
  357. X
  358. X/**********************************************************
  359. X*  You probably do not need to modify the code below here *
  360. X**********************************************************/
  361. X
  362. X/*+-------------------------------------------------------------------------
  363. X    DCE_abort(sig) - dial attempt aborted
  364. X
  365. X sig =  0 if non-signal abort (read timeout, most likely)
  366. X     != 0 if non-SIGALRM signal caught
  367. X
  368. X extern int dialing set  1 if dialing request was active,
  369. X                    else 0 if hangup request was active
  370. X
  371. XThis is a chance for the DCE-specific code to do anything it
  372. Xneeds to cl,ean up after a failure.  Note that if a dialing
  373. Xcall fails, it is the responsibility of the higher-level
  374. Xprogram calling the dialer to call it again with a hangup request, so
  375. Xthis function is usually a no-op.
  376. X--------------------------------------------------------------------------*/
  377. Xvoid
  378. XDCE_abort(sig)
  379. Xint sig;
  380. X{
  381. X    DEBUG(10,"DCE_abort(%d);\n",sig);
  382. X}    /* end of DCE_abort */
  383. X
  384. X/*+-------------------------------------------------------------------------
  385. X    DCE_exit(exitcode) - "last chance for gas" in this incarnation
  386. X
  387. XThe independent portion of the dialer program calls this routine in
  388. Xlieu of exit() in every case except one (see DCE_argv_hook() below).
  389. XNormally, this function just passes it's argument to exit(), but
  390. Xany necessary post-processing can be done.  The function must,
  391. Xhowever, eventually call exit(exitcode);
  392. X--------------------------------------------------------------------------*/
  393. Xvoid
  394. XDCE_exit(exitcode)
  395. Xint exitcode;
  396. X{
  397. X    DEBUG(10,"DCE_exit(%d);\n",exitcode);
  398. X    exit(exitcode);
  399. X}    /* end of DCE_exit */
  400. X
  401. X/*+-------------------------------------------------------------------------
  402. X    DCE_argv_hook(argc,argv,optind,unrecognized_switches)
  403. X
  404. XThis hook gives DCE-specific code a chance to look over the entire
  405. Xcommand line, such as for -z Telebit processing.
  406. X
  407. Xargc andf argv are the same values passed to main(),
  408. X
  409. Xoptind is the value of optind at the end of normal getopt processing.
  410. X
  411. Xunrecognized_switches is the count of switches not handled by main().
  412. XSpecifically, -h and -x are standard switches.
  413. X
  414. XNormally, this function should just return RC_FAIL|RCE_ARGS if there are
  415. Xany unrecognized switches, otherwise zero.  If you keep your nose clean
  416. Xthough, you can do anything you need to do here and exit the program.
  417. X
  418. XNote: only simple switches (with no argument) may be used with this
  419. Xfacility if the functrion is to return,' since main()'s getopt() will
  420. Xstop processing switches if it runs into an unrecognized switch with an
  421. Xargument.
  422. X
  423. XIf the function returns a non-zero value, then the value will be passed
  424. XDIRECTLY to exit() with no further ado.  Thus, a non-zero value must be
  425. Xof the format expected by dialer program callers, with RC_FAIL set as a
  426. Xminimum.
  427. X--------------------------------------------------------------------------*/
  428. Xint
  429. XDCE_argv_hook(argc,argv,optind,unrecognized_switches)
  430. Xint argc;
  431. Xchar **argv;
  432. Xint optind;
  433. Xint unrecognized_switches;
  434. X{
  435. X    if(unrecognized_switches)
  436. X        return(RC_FAIL | RCE_ARGS);
  437. X    return(0);
  438. X}    /* end of DCE_argv_hook */
  439. X
  440. X/* vi: set tabstop=4 shiftwidth=4: */
  441. SHAR_EOF
  442. echo 'File gendial/dceHA24.c is complete' &&
  443. chmod 0644 gendial/dceHA24.c ||
  444. echo 'restore of gendial/dceHA24.c failed'
  445. Wc_c="`wc -c < 'gendial/dceHA24.c'`"
  446. test 12745 -eq "$Wc_c" ||
  447.     echo 'gendial/dceHA24.c: original size 12745, current size' "$Wc_c"
  448. rm -f _shar_wnt_.tmp
  449. fi
  450. # ============= gendial/dceMC9624.c ==============
  451. if test -f 'gendial/dceMC9624.c' -a X"$1" != X"-c"; then
  452.     echo 'x - skipping gendial/dceMC9624.c (File already exists)'
  453.     rm -f _shar_wnt_.tmp
  454. else
  455. > _shar_wnt_.tmp
  456. echo 'x - extracting gendial/dceMC9624.c (Text)'
  457. sed 's/^X//' << 'SHAR_EOF' > 'gendial/dceMC9624.c' &&
  458. X/* CHK=0xB3C9 */
  459. X/*+-------------------------------------------------------------------------
  460. X    dceMC9624.c - DCE-specific portion of generic SCO UUCP dialer
  461. X    Driver for Microcom AX/9624c (assuming DTMF dialing only)
  462. X    wht@n4hgf.Mt-Park.GA.US
  463. X--------------------------------------------------------------------------*/
  464. X/*+:EDITS:*/
  465. X/*:09-10-1992-13:59-wht@n4hgf-ECU release 3.20 */
  466. X/*:08-22-1992-15:38-wht@n4hgf-ECU release 3.20 BETA */
  467. X/*:02-02-1992-18:01-root@n4hgf-proper ordering of DCE_result entries */
  468. X/*:01-26-1992-15:30-wht@n4hgf-gendial 1.2 for ecu 3.20- better hangup */
  469. X/*:07-25-1991-12:58-wht@n4hgf-ECU release 3.10 */
  470. X/*:03-12-1991-19:11-wht@n4hgf-if ecu dialing, show complete call progress */
  471. X/*:01-05-1991-13:48-root@n4hgf-ATZ during reset - modem is flakey */
  472. X/*:11-29-1990-18:31-r@n4hgf-revision/1st releasable */
  473. X/*:07-24-1990-15:36-wht@n4hgf-add speaker on/off */
  474. X/*:07-20-1990-00:10-wht@n4hgf-creation */
  475. X
  476. X#include "dialer.h"
  477. X
  478. X/*
  479. X * DCE_DTR_low_msec - milliseconds to hold DTR low to ensure DCE
  480. X *                    sees the transition; this value may be changed
  481. X *                    as necessary before each call to lflash_DTR(),
  482. X * but, generally, a constant value will do.
  483. X */
  484. Xlong DCE_DTR_low_msec = 500;
  485. X
  486. X/*
  487. X * DCE_DTR_high_msec - milliseconds DTR must remain high before the
  488. X *                     DCE may be expected to be ready to be commanded
  489. X */
  490. Xlong DCE_DTR_high_msec = 500;
  491. X
  492. X/*
  493. X * DCE_write_pace_msec - milliseconds to pause between each character
  494. X *                       sent to the DCE (zero if streaming I/O is
  495. X *                       permitted); this value may be changed as
  496. X * necessary before each call to lwrite(), but, generally, a constant
  497. X * value will do.  Note that this value is used to feed a value to Nap(),
  498. X * which has a granularity of .010 seconds on UNIX/386, .020 on XENIX/286
  499. X * and .050 seconds on XENIX/86.
  500. X */
  501. Xlong DCE_write_pace_msec = 0;
  502. X
  503. X/*
  504. X * DCE_name     - short name for DCE
  505. X * DCE_revision - revision number for this module
  506. X */
  507. Xchar *DCE_name = "Microcom AX/9624c";
  508. Xchar *DCE_revision = "1.21";
  509. X
  510. X/*
  511. X * DCE_hangup_CBAUD - baud rate to use for hanging up DCE
  512. X *                    and readying it for dial in access
  513. X *                    (BXXX mask); use a value of zero if the speed
  514. X *                    specified by the invoker is to be used.
  515. X * This value is useful for DCEs such as the early Hayes 2400
  516. X * which are so unfortunately compatible with their 1200 predecessor
  517. X * that they refuse to answer at 2400 baud unless you last spoke to
  518. X * them at that rate. For such bad boys, use B2400 below.
  519. X */
  520. Xint DCE_hangup_CBAUD = 0;
  521. X/* int DCE_hangup_CBAUD = B2400; */
  522. X
  523. X/*
  524. X * DCE_results - a table of DCE response strings and a token
  525. X *               code for each; when you call lread() or lread_ignore(),
  526. X *               if the read routine detects one of the strings,
  527. X * the appropriate code is returned.  If no string matches, then
  528. X * lread()/lread_ignore examines the DCE result string for a
  529. X * numeric value; if one is found, the numeric value or'd with
  530. X * 0x40000000 is returned (in this way, e.g., you can read "modem
  531. X * S registers").  If nothing agrees with this search, lread()
  532. X * will abort the program with RC|FAIL|RCE_TIMOUT, lread_ignore()
  533. X * will return -1.  You may use any value between 0 and 0x3FFFFFFF.
  534. X * This module is the only consumer  of the codes, although they
  535. X * are decoded by gendial.c's _lread().
  536. X *
  537. X * If one possible result is an "early substring" of another, like
  538. X * "CONNECT" is of "CONNECT 1200", then put such results later in the
  539. X * table than the larger result.
  540. X *
  541. X */
  542. X
  543. X/* flag bits */
  544. X#define rfConnect        0x00800000
  545. X#define rfREL            0x00400000
  546. X#define rfMASK            0x0000FFFF    /* mask off rfBits */
  547. X
  548. X/* unique codes */
  549. X#define rOk                0
  550. X#define rNoCarrier        1
  551. X#define rError            2
  552. X#define rNoDialTone     3
  553. X#define rBusy            4
  554. X#define rNoAnswer        5
  555. X#define rConnect300        (  300  | rfConnect)
  556. X#define rConnect1200    ( 1200  | rfConnect)
  557. X#define rConnect2400    ( 1200  | rfConnect)
  558. X#define rConnect4800    ( 4800  | rfConnect)
  559. X#define rConnect9600    ( 9600  | rfConnect)
  560. X#define rConnect300R    (  300  | rfConnect | rfREL)
  561. X#define rConnect1200R    ( 1200  | rfConnect | rfREL)
  562. X#define rConnect2400R    ( 2400  | rfConnect | rfREL)
  563. X#define rConnect4800R    ( 4800  | rfConnect | rfREL)
  564. X#define rConnect9600R    ( 9600  | rfConnect | rfREL)
  565. X
  566. XDCE_RESULT DCE_results[] =
  567. X{
  568. X    { "OK",                        rOk,            },
  569. X    { "NO CARRIER",                rNoCarrier,        },
  570. X    { "ERROR",                    rError            },
  571. X    { "NO DIALTONE",            rNoDialTone,    },
  572. X    { "BUSY",                    rBusy            },
  573. X    { "NO ANSWER",                rNoAnswer        },
  574. X    { "CONNECT 300/REL",        rConnect300R    },
  575. X    { "CONNECT 1200/REL",        rConnect1200R    },
  576. X    { "CONNECT 2400/REL",        rConnect2400R    },
  577. X    { "CONNECT 4800/REL",        rConnect4800R    },
  578. X    { "CONNECT 9600/REL",        rConnect9600R    },
  579. X    { "CONNECT 300",            rConnect300        },
  580. X    { "CONNECT 1200",            rConnect1200    },
  581. X    { "CONNECT 2400",            rConnect2400    },
  582. X    { "CONNECT 4800",            rConnect4800     },
  583. X    { "CONNECT 9600",            rConnect9600    },
  584. X    { "CONNECT",                rConnect300        },
  585. X    { (char *)0,                -1                }        /* end table */
  586. X};
  587. X
  588. X/*+-------------------------------------------------------------------------
  589. X    DCE_baud_to_CBAUD(baud) - check for valid baud rates supported by DCE
  590. X
  591. X  DCE dependent function must validate baud rates supported by DCE
  592. X  returns baud rate in struct termio c_cflag fashion
  593. X  or terminates program with error
  594. X--------------------------------------------------------------------------*/
  595. Xint
  596. XDCE_baud_to_CBAUD(baud)
  597. Xunsigned int baud;
  598. X{
  599. X    switch(baud)
  600. X    {
  601. X        case 110:  return(B110);
  602. X        case 300:  return(B300);
  603. X        case 1200: return(B1200);
  604. X        case 2400: return(B2400);
  605. X        case 4800: return(B4800);
  606. X        case 9600: return(B9600);
  607. X
  608. X#if defined(B19200)
  609. X        case 19200: return(B19200);
  610. X#else
  611. X#ifdef EXTA
  612. X        case 19200: return(EXTA);
  613. X#endif
  614. X#endif
  615. X
  616. X    }
  617. X    myexit(RC_FAIL | RCE_SPEED);
  618. X#if defined(OPTIMIZE) || defined(__OPTIMIZE__)    /* don't complain */
  619. X    return(0);    /* keep gcc from complaining about no rtn at end */
  620. X#endif
  621. X}    /* end of DCE_baud_to_CBAUD */
  622. X
  623. X/*+-------------------------------------------------------------------------
  624. X    sync_Microcom() - sync modem with our DTE speed
  625. X--------------------------------------------------------------------------*/
  626. Xvoid
  627. Xsync_Microcom()
  628. X{
  629. Xregister int maxretry = 4;
  630. X
  631. X    while(maxretry--)
  632. X    {
  633. X        lflush();
  634. X        DCE_write_pace_msec = 20;
  635. X        lwrite("ATQ0E1V1\r");
  636. X        DCE_write_pace_msec = 0;
  637. X        if(lread_ignore(5) == rOk)
  638. X            return;
  639. X    }
  640. X
  641. X    DEBUG(1,"Microcom SYNC FAILED\n",0);
  642. X    myexit(RC_FAIL | RCE_TIMOUT);
  643. X
  644. X}    /* end of sync_Microcom */
  645. X
  646. X/*+-------------------------------------------------------------------------
  647. X    DCE_hangup() - issue hangup command to DCE
  648. X
  649. XThis function should do whatever is necessary to ensure
  650. X1) any active connection is terminated
  651. X2) the DCE is ready to receive an incoming call if DTR is asserted
  652. X3) the DCE will not accept an incoming call if DTR is false
  653. X
  654. XThe function should return when done.
  655. X
  656. XAny necessary switch setting or other configuration necessary for this
  657. Xfunction to succeed should be documented at the top of the module.
  658. X--------------------------------------------------------------------------*/
  659. Xvoid
  660. XDCE_hangup()
  661. X{
  662. Xchar *reset_it = "ATZ\r";
  663. Xchar *dialin = "ATS0=1Q1E0M0\\N3\\Q1\\G1%C1%P2\r";
  664. X
  665. X    DEBUG(1,"--> hanging up %s\n",dce_name);
  666. X    lflash_DTR();
  667. X    sync_Microcom();
  668. X    lwrite(reset_it);
  669. X    lread_ignore(5);
  670. X    lwrite(dialin);
  671. X    Nap(500L);
  672. X
  673. X}    /* end of DCE_hangup */
  674. X
  675. X/*+-------------------------------------------------------------------------
  676. X    DCE_dial(telno_str) - dial a remote DCE
  677. X
  678. XThis function should connect to the remote DCE and use any success
  679. Xindication to modify the tty baud rate if necessary before returning.
  680. X
  681. XUpon successful connection, return 0.
  682. X
  683. XUpon unsuccessful connection, return RC_FAIL or'd with an appropriate
  684. XRCE_XXX value from dialer.h.
  685. X
  686. Xlwrite() is used to write to the DCE.
  687. X
  688. Xlread() and lread_ignore() are used to read from the DCE.  Read timeouts
  689. Xfrom calling lread() will result automatically in the proper error
  690. Xtermination of the program.  Read timeouts from calling lread_ignore()
  691. Xreturn -1; you handle the execption here.
  692. X
  693. XAny necessary coding of phone numbers, switch settings or other
  694. Xconfiguration necessary for this function to succeed should be
  695. Xdocumented at the top of the module.
  696. X
  697. XMicrocom Plus-specific comments:
  698. X--------------------------------------------------------------------------*/
  699. Xint
  700. XDCE_dial(telno_str)
  701. Xchar *telno_str;
  702. X{
  703. Xchar cmd[128];
  704. Xint timeout;
  705. Xint result;
  706. Xchar *cptr;
  707. Xchar phone[42];
  708. X#define MDVALID "0123456789NnSs,*#()-"
  709. Xchar *setup      = "ATQ0E1V1X4S0=0&D2&C1%C1%P2";
  710. Xchar *setup_REL  = "\\N3\\Q1\\G1";
  711. Xchar *setup_NORM = "\\N0\\Q0\\G0";
  712. X
  713. X/* preliminary setup */
  714. X    translate("=,-,",telno_str);
  715. X    if(strspn(telno_str,MDVALID) != strlen(telno_str))
  716. X    {
  717. X        DEBUG(1,"phone number has invalid characters\n",0);
  718. X        return(RC_FAIL | RCE_PHNO);
  719. X    }
  720. X    if(decode_phone_number(telno_str,phone,sizeof(phone)))
  721. X    {
  722. X        DEBUG(1,"phone number too long\n",0);
  723. X        return(RC_FAIL | RCE_PHNO);
  724. X    }
  725. X
  726. X/*
  727. X * calculate a timeout for the connect
  728. X * allow a minimum of 40 seconds, if reliable, 50
  729. X * also if long distance (North American calculation here)
  730. X * make it 132
  731. X */
  732. X    timeout = 40;
  733. X    if(hiCBAUD > B2400)
  734. X        timeout = 50;
  735. X    if((phone[0] == '1') && (phone[0] != '0'))
  736. X        timeout = 132;
  737. X    for(cptr = phone; cptr = strchr(cptr,','); cptr++)
  738. X        timeout += 2;    /* add extra time for pause characters */
  739. X    DEBUG(6,"wait for connect = %d seconds\n",timeout);
  740. X
  741. X/*
  742. X * build and issue the dialout setup command
  743. X * 9624's S7 timing is way off (S7 is calculated as timeout * .6)
  744. X */
  745. X    DEBUG(1,"--> issuing setup command\n",0);
  746. X    sprintf(cmd,"%s%sS7=%d\r",
  747. X        setup,
  748. X        (hiCBAUD > B2400) ? setup_REL : setup_NORM,
  749. X        (timeout * 6) / 10);
  750. X
  751. X    sync_Microcom();
  752. X    lwrite(cmd);
  753. X    if(lread(5) != rOk)
  754. X        return(RC_FAIL | RCE_NULL);
  755. X
  756. X/* indicate non-root should not see DTE->DCE traffic */
  757. X    secure = 1;
  758. X
  759. X/*
  760. X * build and issue the actual dialing command
  761. X * if root, let him see number, otherwise just say "remote system"
  762. X */
  763. X#ifdef WHT
  764. X    if(!strncmp(*gargv,"ECU",3))
  765. X        dialer_codes['S' - 'A'] = 1;
  766. X#endif
  767. X    DEBUG(1,"--> dialing %s\n", (!ecu_calling & uid) ? "remote system" : phone);
  768. X    sprintf(cmd,"ATS2=255M%dDT%s\r",
  769. X        ((dialer_codes['S' - 'A']) && !(dialer_codes['N' - 'A'])) ? 1 : 0,
  770. X        phone);
  771. X
  772. X    /* cmd string can only be 40 characters including "AT" */
  773. X    if(strlen(cmd) > 40)
  774. X    {
  775. X        DEBUG(1,"phone number string too long\n",0);
  776. X        cleanup(RC_FAIL | RCE_PHNO);
  777. X    }
  778. X
  779. X    lwrite(cmd);
  780. X
  781. X/* indicate non-root can see DTE->DCE traffic */
  782. X    secure = 0;
  783. X
  784. X/* wait for connect */
  785. X    result = lread(timeout);
  786. X    if(!(result & rfConnect))
  787. X    {
  788. X        switch(result & rfMASK)
  789. X        {
  790. X        case rNoDialTone:
  791. X            return(RC_FAIL | RCE_NOTONE);
  792. X        case rBusy:
  793. X            return(RC_FAIL | RCE_BUSY);
  794. X        case rNoAnswer:
  795. X        case rNoCarrier:    /* with ATX4, NO CARRIER == NO ANSWER
  796. X                             * since BUSY and NO DIAL TONE are reported
  797. X                             */
  798. X            return(RC_FAIL | RCE_ANSWER);
  799. X        default:
  800. X            return(RC_FAIL | RCE_NULL);
  801. X        }
  802. X    }
  803. X
  804. X    return(0);        /* succeeded */
  805. X
  806. X}    /* end of DCE_dial */
  807. X
  808. X/**********************************************************
  809. X*  You probably do not need to modify the code below here *
  810. X**********************************************************/
  811. X
  812. X/*+-------------------------------------------------------------------------
  813. X    DCE_abort(sig) - dial attempt aborted
  814. X
  815. X sig =  0 if non-signal abort (read timeout, most likely)
  816. X     != 0 if non-SIGALRM signal caught
  817. X
  818. X extern int dialing set  1 if dialing request was active,
  819. X                    else 0 if hangup request was active
  820. X
  821. XThis is a chance for the DCE-specific code to do anything it
  822. Xneeds to cl,ean up after a failure.  Note that if a dialing
  823. Xcall fails, it is the responsibility of the higher-level
  824. Xprogram calling the dialer to call it again with a hangup request, so
  825. Xthis function is usually a no-op.
  826. X--------------------------------------------------------------------------*/
  827. Xvoid
  828. XDCE_abort(sig)
  829. Xint sig;
  830. X{
  831. X    DEBUG(10,"DCE_abort(%d);\n",sig);
  832. X}    /* end of DCE_abort */
  833. X
  834. X/*+-------------------------------------------------------------------------
  835. X    DCE_exit(exitcode) - "last chance for gas" in this incarnation
  836. X
  837. XThe independent portion of the dialer program calls this routine in
  838. Xlieu of exit() in every case except one (see DCE_argv_hook() below).
  839. XNormally, this function just passes it's argument to exit(), but
  840. Xany necessary post-processing can be done.  The function must,
  841. Xhowever, eventually call exit(exitcode);
  842. X--------------------------------------------------------------------------*/
  843. Xvoid
  844. XDCE_exit(exitcode)
  845. Xint exitcode;
  846. X{
  847. X    DEBUG(10,"DCE_exit(%d);\n",exitcode);
  848. X    exit(exitcode);
  849. X}    /* end of DCE_exit */
  850. X
  851. X/*+-------------------------------------------------------------------------
  852. X    DCE_argv_hook(argc,argv,optind,unrecognized_switches)
  853. X
  854. XThis hook gives DCE-specific code a chance to look over the entire
  855. Xcommand line, such as for -z processing.
  856. X
  857. Xargc andf argv are the same values passed to main(),
  858. X
  859. Xoptind is the value of optind at the end of normal getopt processing.
  860. X
  861. Xunrecognized_switches is the count of switches not handled by main().
  862. XSpecifically, -h and -x are standard switches.
  863. X
  864. XNormally, this function should just return RC_FAIL|RCE_ARGS if there are
  865. Xany unrecognized switches, otherwise zero.  If you keep your nose clean
  866. Xthough, you can do anything you need to do here and exit the program.
  867. X
  868. XNote: only simple switches (with no argument) may be used with this
  869. Xfacility if the functrion is to return,' since main()'s getopt() will
  870. Xstop processing switches if it runs into an unrecognized switch with an
  871. Xargument.
  872. X
  873. XIf the function returns a non-zero value, then the value will be passed
  874. XDIRECTLY to exit() with no further ado.  Thus, a non-zero value must be
  875. Xof the format expected by dialer program callers, with RC_FAIL set as a
  876. Xminimum.
  877. X--------------------------------------------------------------------------*/
  878. Xint
  879. XDCE_argv_hook(argc,argv,optind,unrecognized_switches)
  880. Xint argc;
  881. Xchar **argv;
  882. Xint optind;
  883. Xint unrecognized_switches;
  884. X{
  885. X    if(unrecognized_switches)
  886. X        return(RC_FAIL | RCE_ARGS);
  887. X    return(0);
  888. X}    /* end of DCE_argv_hook */
  889. X
  890. X/* vi: set tabstop=4 shiftwidth=4: */
  891. SHAR_EOF
  892. chmod 0644 gendial/dceMC9624.c ||
  893. echo 'restore of gendial/dceMC9624.c failed'
  894. Wc_c="`wc -c < 'gendial/dceMC9624.c'`"
  895. test 13931 -eq "$Wc_c" ||
  896.     echo 'gendial/dceMC9624.c: original size 13931, current size' "$Wc_c"
  897. rm -f _shar_wnt_.tmp
  898. fi
  899. # ============= gendial/dceMPAD.c ==============
  900. if test -f 'gendial/dceMPAD.c' -a X"$1" != X"-c"; then
  901.     echo 'x - skipping gendial/dceMPAD.c (File already exists)'
  902.     rm -f _shar_wnt_.tmp
  903. else
  904. > _shar_wnt_.tmp
  905. echo 'x - extracting gendial/dceMPAD.c (Text)'
  906. sed 's/^X//' << 'SHAR_EOF' > 'gendial/dceMPAD.c' &&
  907. X/* CHK=0xFF53 */
  908. X/*+-------------------------------------------------------------------------
  909. X    dceMPAD.c - DCE-specific portion of generic SCO UUCP dialer
  910. X    Driver for ATT Tridom MPAD VSAT modem emulation
  911. X    wht@n4hgf.Mt-Park.GA.US
  912. X--------------------------------------------------------------------------*/
  913. X/*+:EDITS:*/
  914. X/*:09-10-1992-13:59-wht@n4hgf-ECU release 3.20 */
  915. X/*:08-22-1992-15:38-wht@n4hgf-ECU release 3.20 BETA */
  916. X/*:02-02-1992-18:01-root@n4hgf-proper ordering of DCE_result entries */
  917. X/*:01-26-1992-15:30-wht@n4hgf-gendial 1.2 for ecu 3.20- better hangup */
  918. X/*:07-25-1991-12:58-wht@n4hgf-ECU release 3.10 */
  919. X/*:03-12-1991-19:11-wht@n4hgf-if ecu dialing, show complete call progress */
  920. X/*:11-29-1990-18:31-r@n4hgf-revision/1st releasable */
  921. X/*:11-29-1990-17:48-wht@n4hgf-creation */
  922. X
  923. X#include "dialer.h"
  924. X
  925. X/*
  926. X * DCE_DTR_low_msec - milliseconds to hold DTR low to ensure DCE
  927. X *                    sees the transition; this value may be changed
  928. X *                    as necessary before each call to lflash_DTR(),
  929. X * but, generally, a constant value will do.
  930. X */
  931. Xlong DCE_DTR_low_msec = 50;
  932. X
  933. X/*
  934. X * DCE_DTR_high_msec - milliseconds DTR must remain high before the
  935. X *                     DCE may be expected to be ready to be commanded
  936. X */
  937. Xlong DCE_DTR_high_msec = 50;
  938. X
  939. X/*
  940. X * DCE_write_pace_msec - milliseconds to pause between each character
  941. X *                       sent to the DCE (zero if streaming I/O is
  942. X *                       permitted); this value may be changed as
  943. X * necessary before each call to lwrite(), but, generally, a constant
  944. X * value will do.  Note that this value is used to feed a value to Nap(),
  945. X * which has a granularity of .010 seconds on UNIX/386, .020 on XENIX/286
  946. X * and .050 seconds on XENIX/86.
  947. X */
  948. Xlong DCE_write_pace_msec = 0;
  949. X
  950. X/*
  951. X * DCE_name     - short name for DCE
  952. X * DCE_revision - revision number for this module
  953. X */
  954. Xchar *DCE_name = "ATT Tridom MPAD";
  955. Xchar *DCE_revision = "1.37";
  956. X
  957. X/*
  958. X * DCE_hangup_CBAUD - baud rate to use for hanging up DCE
  959. X *                    and readying it for dial in access
  960. X *                    (BXXX mask); use a value of zero if the speed
  961. X *                    specified by the invoker is to be used.
  962. X * This value is useful for DCEs such as the early Hayes 2400
  963. X * which are so unfortunately compatible with their 1200 predecessor
  964. X * that they refuse to answer at 2400 baud unless you last spoke to
  965. X * them at that rate. For such bad boys, use B2400 below.
  966. X */
  967. Xint DCE_hangup_CBAUD = 0;
  968. X/* int DCE_hangup_CBAUD = B2400; */
  969. X
  970. X/*
  971. X * DCE_results - a table of DCE response strings and a token
  972. X *               code for each; when you call lread() or lread_ignore(),
  973. X *               if the read routine detects one of the strings,
  974. X * the appropriate code is returned.  If no string matches, then
  975. X * lread()/lread_ignore examines the DCE result string for a
  976. X * numeric value; if one is found, the numeric value or'd with
  977. X * 0x40000000 is returned (in this way, e.g., you can read "modem
  978. X * S registers").  If nothing agrees with this search, lread()
  979. X * will abort the program with RC|FAIL|RCE_TIMOUT, lread_ignore()
  980. X * will return -1.  You may use any value between 0 and 0x3FFFFFFF.
  981. X * This module is the only consumer  of the codes, although they
  982. X * are decoded by gendial.c's _lread().
  983. X *
  984. X * If one possible result is an "early substring" of another, like
  985. X * "CONNECT" is of "CONNECT 1200", then put such results later in the
  986. X * table than the larger result.
  987. X *
  988. X */
  989. X
  990. X/* flag bits */
  991. X#define rfConnect        0x00800000
  992. X#define rfMASK            0x0000FFFF    /* mask off rfBits */
  993. X
  994. X/* unique codes */
  995. X#define rOk                0
  996. X#define rNoCarrier        1
  997. X#define rError            2
  998. X#define rNoDialTone     3
  999. X#define rBusy            4
  1000. X#define rNoAnswer        5
  1001. X#define rRring            6
  1002. X#define rConnect300        (  300  | rfConnect)
  1003. X#define rConnect1200    ( 1200  | rfConnect)
  1004. X#define rConnect2400    ( 2400  | rfConnect)
  1005. X#define rConnect4800    ( 4800  | rfConnect)
  1006. X#define rConnect9600    ( 9600  | rfConnect)
  1007. X#define rConnect9600    ( 9600  | rfConnect)
  1008. X#define rConnect19200    (19200  | rfConnect)
  1009. X#define rConnect38400    (38400  | rfConnect)
  1010. X
  1011. XDCE_RESULT DCE_results[] =
  1012. X{
  1013. X    { "OK",                 rOk,            },
  1014. X    { "NO CARRIER",         rNoCarrier,     },
  1015. X    { "ERROR",              rError          },
  1016. X    { "BUSY",               rBusy           },
  1017. X    { "NO ANSWER",          rNoAnswer       },
  1018. X    { "NO DIAL TONE",       rNoDialTone     },
  1019. X    { "KDIR SENDX ERROR",   rNoDialTone     },  /* MPAD software error */
  1020. X    { "KDIR UNRESPONSIVE",  rNoDialTone     },
  1021. X    { "KDIR BUSY",          rBusy           },
  1022. X    { "KDIR BAD REQUEST",   rError          },  /* number 0 or >11 length */
  1023. X    { "NO SUCH NUMBER",     rNoAnswer       },
  1024. X    { "KDIR LOGIC ERROR",   rNoDialTone     },  /* MPAD software error */
  1025. X    { "KDIR NOT AVAIL",     rNoDialTone     },
  1026. X    { "TP4 STATE ERROR",    rNoDialTone     },  /* rain fade */
  1027. X    { "TP4 GIVE UP",        rBusy           },  /* rain fade */
  1028. X    { "TP4 ERROR RESP",     rBusy           },  /* transient problem */
  1029. X    { "NET DEACT",          rNoDialTone     },  /* net op deactivated port */
  1030. X    { "CONNECT 300",        rConnect300     },
  1031. X    { "CONNECT 1200",       rConnect1200    },
  1032. X    { "CONNECT 4800",       rConnect4800    },
  1033. X    { "CONNECT 9600",       rConnect9600    },
  1034. X    { "CONNECT 19200",      rConnect19200   },
  1035. X    { "CONNECT 38400",      rConnect38400   },
  1036. X    { (char *)0,            -1              }       /* end table */
  1037. X};
  1038. X
  1039. X/*+-------------------------------------------------------------------------
  1040. X    DCE_baud_to_CBAUD(baud) - check for valid baud rates supported by DCE
  1041. X
  1042. X  DCE dependent function must validate baud rates supported by DCE
  1043. X  returns baud rate in struct termio c_cflag fashion
  1044. X  or terminates program with error
  1045. X--------------------------------------------------------------------------*/
  1046. Xint
  1047. XDCE_baud_to_CBAUD(baud)
  1048. Xunsigned int baud;
  1049. X{
  1050. X    switch(baud)
  1051. X    {
  1052. X        case 110:  return(B110);
  1053. X        case 300:  return(B300);
  1054. X        case 1200: return(B1200);
  1055. X        case 2400: return(B2400);
  1056. X        case 9600: return(B9600);
  1057. X
  1058. X#if defined(B19200)
  1059. X        case 19200: return(B19200);
  1060. X#else
  1061. X#ifdef EXTA
  1062. X        case 19200: return(EXTA);
  1063. X#endif
  1064. X#endif
  1065. X
  1066. X#if defined(B38400)
  1067. X        case 38400: return(B38400);
  1068. X#else
  1069. X#ifdef EXTB
  1070. X        case 38400: return(EXTB);
  1071. X#endif
  1072. X#endif
  1073. X
  1074. X    }
  1075. X    myexit(RC_FAIL | RCE_SPEED);
  1076. X#if defined(OPTIMIZE) || defined(__OPTIMIZE__)    /* don't complain */
  1077. X    return(0);    /* keep gcc from complaining about no rtn at end */
  1078. X#endif
  1079. X}    /* end of DCE_baud_to_CBAUD */
  1080. X
  1081. X/*+-------------------------------------------------------------------------
  1082. X    sync_MPAD() - sync modem with our DTE speed
  1083. X--------------------------------------------------------------------------*/
  1084. Xvoid
  1085. Xsync_MPAD()
  1086. X{
  1087. Xregister int maxretry = 8;
  1088. Xregister int count;
  1089. Xunsigned char rdchar;
  1090. X
  1091. X    while(maxretry--)
  1092. X    {
  1093. X        lflush();
  1094. X        write(dce_fd,"a",1);
  1095. X        count = 5;
  1096. X        while(count)    /* wait 50-200 msec for character, depending on HZ */
  1097. X        {
  1098. X            if(rdchk(dce_fd))
  1099. X                break;
  1100. X            Nap(50L);
  1101. X            count--;
  1102. X        }
  1103. X        if(count && (read(dce_fd,&rdchar,1) == 1) && (rdchar == 'a'))
  1104. X            return;
  1105. X        write(dce_fd,"atq0v1e1\r",9);
  1106. X        Nap(500L);
  1107. X    }
  1108. X
  1109. X    DEBUG(1,"MPAD SYNC FAILED\n",0);
  1110. X    myexit(RC_FAIL | RCE_TIMOUT);
  1111. X
  1112. X}    /* end of sync_MPAD */
  1113. X
  1114. X/*+-------------------------------------------------------------------------
  1115. X    init_MPAD() - init MPAD from scratch, assuming nothing
  1116. X--------------------------------------------------------------------------*/
  1117. Xvoid
  1118. Xinit_MPAD()
  1119. X{
  1120. Xregister itmp;
  1121. Xint maxretry = 4;
  1122. Xchar *init0 = "ATE0Q0V1X99S0=1S2=255\r";
  1123. X
  1124. X    DEBUG(1,"--> reseting %s\n",dce_name);
  1125. X    lflash_DTR();
  1126. X    sync_MPAD();
  1127. X
  1128. X    /*
  1129. X     * set to factory default (bless them for this command)
  1130. X     * and a few initial beachhead values
  1131. X     */
  1132. X    for(itmp = 0; itmp < maxretry; itmp++)
  1133. X    {
  1134. X        lwrite(init0);
  1135. X        if(lread(5) == rOk)
  1136. X            break;
  1137. X    }
  1138. X    if(itmp == maxretry)
  1139. X    {
  1140. X        DEBUG(1,"reset failed\n",0);
  1141. X        myexit(RC_FAIL | RCE_TIMOUT);
  1142. X    }
  1143. X
  1144. X}    /* end of init_MPAD */
  1145. X
  1146. X/*+-------------------------------------------------------------------------
  1147. X    DCE_hangup() - issue hangup command to DCE
  1148. X
  1149. XThis function should do whatever is necessary to ensure
  1150. X1) any active connection is terminated
  1151. X2) the DCE is ready to receive an incoming call if DTR is asserted
  1152. X3) the DCE will not accept an incoming call if DTR is false
  1153. X
  1154. XThe function should return when done.
  1155. X
  1156. XAny necessary switch setting or other configuration necessary for this
  1157. Xfunction to succeed should be documented at the top of the module.
  1158. X--------------------------------------------------------------------------*/
  1159. Xvoid
  1160. XDCE_hangup()
  1161. X{
  1162. X    DEBUG(1,"--> hanging up %s\n",dce_name);
  1163. X    lflash_DTR();
  1164. X    init_MPAD();
  1165. X
  1166. X}    /* end of DCE_hangup */
  1167. X
  1168. X/*+-------------------------------------------------------------------------
  1169. X    DCE_dial(telno_str) - dial a remote DCE
  1170. X
  1171. XThis function should connect to the remote DCE and use any success
  1172. Xindication to modify the tty baud rate if necessary before returning.
  1173. X
  1174. XUpon successful connection, return 0.
  1175. X
  1176. XUpon unsuccessful connection, return RC_FAIL or'd with an appropriate
  1177. XRCE_XXX value from dialer.h.
  1178. X
  1179. Xlwrite() is used to write to the DCE.
  1180. X
  1181. Xlread() and lread_ignore() are used to read from the DCE.  Read timeouts
  1182. Xfrom calling lread() will result automatically in the proper error
  1183. Xtermination of the program.  Read timeouts from calling lread_ignore()
  1184. Xreturn -1; you handle the execption here.
  1185. X
  1186. XAny necessary coding of phone numbers, switch settings or other
  1187. Xconfiguration necessary for this function to succeed should be
  1188. Xdocumented at the top of the module.
  1189. X
  1190. XMPAD Plus-specific comments:
  1191. X Q0          do not be quiet
  1192. X E0          do not echo
  1193. X V1          verbal result codes
  1194. X S0=0        dont allow connect while dialing
  1195. X X99         full result codes
  1196. X--------------------------------------------------------------------------*/
  1197. Xint
  1198. XDCE_dial(telno_str)
  1199. Xchar *telno_str;
  1200. X{
  1201. Xchar cmd[128];
  1202. Xchar phone[50];
  1203. Xint timeout;
  1204. Xint result;
  1205. Xchar *cptr;
  1206. Xchar *dialout_default = "ATQ0E0V1E0S0=0X99\r";
  1207. X#define MDVALID     "0123456789NnSs()-"
  1208. X
  1209. X/* preliminary setup */
  1210. X    translate("=,-,",telno_str);
  1211. X    if(strspn(telno_str,MDVALID) != strlen(telno_str))
  1212. X    {
  1213. X        DEBUG(1,"phone number has invalid characters\n",0);
  1214. X        return(RC_FAIL | RCE_PHNO);
  1215. X    }
  1216. X    if(decode_phone_number(telno_str,phone,sizeof(phone)))
  1217. X    {
  1218. X        DEBUG(1,"phone number too long\n",0);
  1219. X        return(RC_FAIL | RCE_PHNO);
  1220. X    }
  1221. X
  1222. X/* walk through dialer codes, doing custom setup */
  1223. X    strcpy(cmd,"AT");
  1224. X    cptr = cmd + strlen(cmd);
  1225. X
  1226. X    DEBUG(1,"--> issuing default setup command\n",0);
  1227. X    sync_MPAD();
  1228. X    lwrite(dialout_default);
  1229. X    if(lread(5) != rOk)
  1230. X    {
  1231. X        DEBUG(1,"default dialout setup failed\n",0);
  1232. X        return(RC_FAIL | RCE_NULL);
  1233. X    }
  1234. X
  1235. X/* issue the custom setup command */
  1236. X    if(*cptr)
  1237. X    {
  1238. X        DEBUG(1,"--> issuing custom setup cmd\n",0);
  1239. X        strcat(cmd,"\r");
  1240. X        sync_MPAD();
  1241. X        lwrite(cmd);
  1242. X        if(lread(5) != rOk)
  1243. X        {
  1244. X            DEBUG(1,"custom modem setup failed\n",0);
  1245. X            return(RC_FAIL | RCE_NULL);
  1246. X        }
  1247. X    }
  1248. X
  1249. X/*
  1250. X * calculate a timeout for the connect
  1251. X */
  1252. X    timeout = 20;
  1253. X    DEBUG(6,"wait for connect = %d seconds\n",timeout);
  1254. X
  1255. X/* indicate non-root should not see DTE->DCE traffic */
  1256. X    secure = 1;
  1257. X
  1258. X/*
  1259. X * build and issue the actual dialing command
  1260. X * if root, let him see number, otherwise just say "remote system"
  1261. X */
  1262. X    DEBUG(1,"--> dialing %s\n", (!ecu_calling & uid) ? "remote system" : phone);
  1263. X    sprintf(cmd,"ATS7=%dDT%s\r",(timeout * 9) / 10,phone);
  1264. X
  1265. X    /* cmd string can only be 40 characters including "AT" */
  1266. X    if(strlen(cmd) > 40)
  1267. X    {
  1268. X        DEBUG(1,"phone number string too long\n",0);
  1269. X        cleanup(RC_FAIL | RCE_PHNO);
  1270. X    }
  1271. X
  1272. X    sync_MPAD();
  1273. X    lwrite(cmd);
  1274. X
  1275. X/* indicate non-root can see DTE->DCE traffic */
  1276. X    secure = 0;
  1277. X
  1278. X/* wait for connect */
  1279. X    result = lread(timeout);
  1280. X    if(!(result & rfConnect))
  1281. X    {
  1282. X        switch(result & rfMASK)
  1283. X        {
  1284. X        case rNoCarrier:
  1285. X            return(RC_FAIL | RCE_NOCARR);
  1286. X        case rNoDialTone:
  1287. X            return(RC_FAIL | RCE_NOTONE);
  1288. X        case rBusy:
  1289. X            return(RC_FAIL | RCE_BUSY);
  1290. X        case rNoAnswer:
  1291. X            return(RC_FAIL | RCE_ANSWER);
  1292. X        case rError:
  1293. X        default:
  1294. X            return(RC_FAIL | RCE_NULL);
  1295. X        }
  1296. X    }
  1297. X
  1298. X    return(0);        /* succeeded */
  1299. X
  1300. X}    /* end of DCE_dial */
  1301. X
  1302. X/**********************************************************
  1303. X*  You probably do not need to modify the code below here *
  1304. X**********************************************************/
  1305. X
  1306. X/*+-------------------------------------------------------------------------
  1307. X    DCE_abort(sig) - dial attempt aborted
  1308. X
  1309. X sig =  0 if non-signal abort (read timeout, most likely)
  1310. X     != 0 if non-SIGALRM signal caught
  1311. X
  1312. X extern int dialing set  1 if dialing request was active,
  1313. X                    else 0 if hangup request was active
  1314. X
  1315. XThis is a chance for the DCE-specific code to do anything it
  1316. Xneeds to cl,ean up after a failure.  Note that if a dialing
  1317. Xcall fails, it is the responsibility of the higher-level
  1318. Xprogram calling the dialer to call it again with a hangup request, so
  1319. Xthis function is usually a no-op.
  1320. X--------------------------------------------------------------------------*/
  1321. Xvoid
  1322. XDCE_abort(sig)
  1323. Xint sig;
  1324. X{
  1325. X    DEBUG(10,"DCE_abort(%d);\n",sig);
  1326. X}    /* end of DCE_abort */
  1327. X
  1328. X/*+-------------------------------------------------------------------------
  1329. X    DCE_exit(exitcode) - "last chance for gas" in this incarnation
  1330. X
  1331. XThe independent portion of the dialer program calls this routine in
  1332. Xlieu of exit() in every case except one (see DCE_argv_hook() below).
  1333. XNormally, this function just passes it's argument to exit(), but
  1334. Xany necessary post-processing can be done.  The function must,
  1335. Xhowever, eventually call exit(exitcode);
  1336. X--------------------------------------------------------------------------*/
  1337. Xvoid
  1338. XDCE_exit(exitcode)
  1339. Xint exitcode;
  1340. X{
  1341. X    DEBUG(10,"DCE_exit(%d);\n",exitcode);
  1342. X    exit(exitcode);
  1343. X}    /* end of DCE_exit */
  1344. X
  1345. X/*+-------------------------------------------------------------------------
  1346. X    DCE_argv_hook(argc,argv,optind,unrecognized_switches)
  1347. X
  1348. XThis hook gives DCE-specific code a chance to look over the entire
  1349. Xcommand line, such as for -z processing.
  1350. X
  1351. Xargc andf argv are the same values passed to main(),
  1352. X
  1353. Xoptind is the value of optind at the end of normal getopt processing.
  1354. X
  1355. Xunrecognized_switches is the count of switches not handled by main().
  1356. XSpecifically, -h and -x are standard switches.
  1357. X
  1358. XNormally, this function should just return RC_FAIL|RCE_ARGS if there are
  1359. Xany unrecognized switches, otherwise zero.  If you keep your nose clean
  1360. Xthough, you can do anything you need to do here and exit the program.
  1361. X
  1362. XNote: only simple switches (with no argument) may be used with this
  1363. Xfacility if the functrion is to return,' since main()'s getopt() will
  1364. Xstop processing switches if it runs into an unrecognized switch with an
  1365. Xargument.
  1366. X
  1367. XIf the function returns a non-zero value, then the value will be passed
  1368. XDIRECTLY to exit() with no further ado.  Thus, a non-zero value must be
  1369. Xof the format expected by dialer program callers, with RC_FAIL set as a
  1370. Xminimum.
  1371. X--------------------------------------------------------------------------*/
  1372. Xint
  1373. XDCE_argv_hook(argc,argv,optind,unrecognized_switches)
  1374. Xint argc;
  1375. Xchar **argv;
  1376. Xint optind;
  1377. Xint unrecognized_switches;
  1378. X{
  1379. X    if(unrecognized_switches)
  1380. X        return(RC_FAIL | RCE_ARGS);
  1381. X    return(0);
  1382. X}    /* end of DCE_argv_hook */
  1383. X
  1384. X/* vi: set tabstop=4 shiftwidth=4: */
  1385. SHAR_EOF
  1386. chmod 0644 gendial/dceMPAD.c ||
  1387. echo 'restore of gendial/dceMPAD.c failed'
  1388. Wc_c="`wc -c < 'gendial/dceMPAD.c'`"
  1389. test 14942 -eq "$Wc_c" ||
  1390.     echo 'gendial/dceMPAD.c: original size 14942, current size' "$Wc_c"
  1391. rm -f _shar_wnt_.tmp
  1392. fi
  1393. # ============= gendial/dceT2500.c ==============
  1394. if test -f 'gendial/dceT2500.c' -a X"$1" != X"-c"; then
  1395.     echo 'x - skipping gendial/dceT2500.c (File already exists)'
  1396.     rm -f _shar_wnt_.tmp
  1397. else
  1398. > _shar_wnt_.tmp
  1399. echo 'x - extracting gendial/dceT2500.c (Text)'
  1400. sed 's/^X//' << 'SHAR_EOF' > 'gendial/dceT2500.c' &&
  1401. X/*+-------------------------------------------------------------------------
  1402. X    dceT2500.c - DCE-specific portion of generic SCO UUCP dialer
  1403. X    Driver for Telebit T2500
  1404. X    wht@n4hgf.Mt-Park.GA.US
  1405. X
  1406. Xafter init
  1407. XE0 F1 M0 Q4 P V1 W0 X3 Y0 &P0 &T4     Version GE6.01-T2500
  1408. XS00=001 S01=000 S02:001 S03=013 S04=010 S05=008 S06=002 S07=040 S08=002 S09=006
  1409. XS10=007 S11:050 S12=050 S18=000 S25=005 S26=000 S38=000 
  1410. XS41=000 S45:001 S47=004 S48:001 S49=000 
  1411. XS50=000 S51:252 S52:004 S54:003 S55=000 S56=017 S57=019 S58:002 S59=000 
  1412. XS61=150 S62=003 S63=001 S64:001 S65=000 S66=000 S67=000 S68=255 S69=000 
  1413. XS90=000 S91=000 S92:001 S93=008 S94=001 S95=000 S96=001 S97=000 S98=003 
  1414. XS100=000 S101=000 S102=000 S104=000 S105=001 S106=000 S107=020 
  1415. XS110=255 S111=255 S112=001 
  1416. XS121=000 S130=002 S131:001 
  1417. XS150=000 S151=004 S152=001 S153=001 S154=000 S155=000 
  1418. XS160=010 S161=020 S162=002 S163=003 S164=007 S255=000 
  1419. X--------------------------------------------------------------------------*/
  1420. X/*+:EDITS:*/
  1421. X/*:09-10-1992-13:59-wht@n4hgf-ECU release 3.20 */
  1422. X/*:08-22-1992-15:38-wht@n4hgf-ECU release 3.20 BETA */
  1423. X/*:07-27-1992-05:00-wht@n4hgf-no pacing */
  1424. X/*:02-10-1992-21:43-root@n4hgf-made it 1.5 years not setting S131 - then drat */
  1425. X/*:02-10-1992-00:27-wht@n4hgf-improved sync_Telebit */
  1426. X/*:01-26-1992-15:30-wht@n4hgf-gendial 1.2 for ecu 3.20- better hangup */
  1427. X/*:07-25-1991-12:58-wht@n4hgf-ECU release 3.10 */
  1428. X/*:03-12-1991-19:11-wht@n4hgf-if ecu dialing, show complete call progress */
  1429. X/*:11-29-1990-18:31-r@n4hgf-revision/1st releasable */
  1430. X/*:08-14-1990-20:40-wht@n4hgf-ecu3.00-flush old edit history */
  1431. X
  1432. X#include "dialer.h"
  1433. X
  1434. X/*
  1435. X * DCE_DTR_low_msec - milliseconds to hold DTR low to ensure DCE
  1436. X *                    sees the transition; this value may be changed
  1437. X *                    as necessary before each call to lflash_DTR(),
  1438. X * but, generally, a constant value will do.
  1439. X */
  1440. Xlong DCE_DTR_low_msec = 500;
  1441. X
  1442. X/*
  1443. X * DCE_DTR_high_msec - milliseconds DTR must remain high before the
  1444. X *                     DCE may be expected to be ready to be commanded
  1445. X */
  1446. Xlong DCE_DTR_high_msec = 1000L;
  1447. X
  1448. X/*
  1449. X * DCE_write_pace_msec - milliseconds to pause between each character
  1450. X *                       sent to the DCE (zero if streaming I/O is
  1451. X *                       permitted); this value may be changed as
  1452. X * necessary before each call to lwrite(), but, generally, a constant
  1453. X * value will do.  Note that this value is used to feed a value to Nap(),
  1454. X * which has a granularity of .010 seconds on UNIX/386, .020 on XENIX/286
  1455. X * and .050 seconds on XENIX/86.
  1456. X */
  1457. Xlong DCE_write_pace_msec = 0;
  1458. X
  1459. X/*
  1460. X * DCE_name     - short name for DCE
  1461. X * DCE_revision - revision number for this module
  1462. X */
  1463. Xchar *DCE_name = "Telebit T2500";
  1464. Xchar *DCE_revision = "1.30";
  1465. X
  1466. X/*
  1467. X * DCE_hangup_CBAUD - baud rate to use for hanging up DCE
  1468. X *                    and readying it for dial in access
  1469. X *                    (BXXX mask); use a value of zero if the speed
  1470. X *                    specified by the invoker is to be used.
  1471. X * This value is useful for DCEs such as the early Hayes 2400
  1472. X * which are so unfortunately compatible with their 1200 predecessor
  1473. X * that they refuse to answer at 2400 baud unless you last spoke to
  1474. X * them at that rate. For such bad boys, use B2400 below.
  1475. X */
  1476. Xint DCE_hangup_CBAUD = 0;
  1477. X/* int DCE_hangup_CBAUD = B2400; */
  1478. X
  1479. X/*
  1480. X * DCE_results - a table of DCE response strings and a token
  1481. X *               code for each; when you call lread() or lread_ignore(),
  1482. X *               if the read routine detects one of the strings,
  1483. X * the appropriate code is returned.  If no string matches, then
  1484. X * lread()/lread_ignore examines the DCE result string for a
  1485. X * numeric value; if one is found, the numeric value or'd with
  1486. X * 0x40000000 is returned (in this way, e.g., you can read "modem
  1487. X * S registers").  If nothing agrees with this search, lread()
  1488. X * will abort the program with RC_FAIL|RCE_TIMOUT, lread_ignore()
  1489. X * will return -1.  You may use any value between 0 and 0x3FFFFFFF.
  1490. X * This module is the only consumer  of the codes, although they
  1491. X * are decoded by gendial.c's _lread()
  1492. X */
  1493. X
  1494. X/* flag bits */
  1495. X#define rfConnect        0x00800000
  1496. X#define rfREL            0x00400000
  1497. X#define rfFAST            0x00200000
  1498. X#define rfV32            0x00100000
  1499. X#define rfMASK            0x0000FFFF    /* mask off rfBits */
  1500. X
  1501. X/* unique codes */
  1502. X#define rOk                0
  1503. X#define rNoCarrier        1
  1504. X#define rError            2
  1505. X#define rNoDialTone     3
  1506. X#define rBusy            4
  1507. X#define rNoAnswer        5
  1508. X#define rRring            6
  1509. X#define rConnect300        (  300  | rfConnect)
  1510. X#define rConnect1200    ( 1200  | rfConnect)
  1511. X#define rConnect2400    ( 1200  | rfConnect)
  1512. X#define rConnect300R    (  300  | rfConnect | rfREL)
  1513. X#define rConnect1200R    ( 1200  | rfConnect | rfREL)
  1514. X#define rConnect2400R    ( 2400  | rfConnect | rfREL)
  1515. X#define rConnectFASTK    (19200  | rfConnect | rfFAST)    /* may be 9600 */
  1516. X#define rConnectFASTX    (19200  | rfConnect | rfFAST)
  1517. X#define rConnectFASTU    (19200  | rfConnect | rfFAST)
  1518. X#define rConnectFAST    (19200  | rfConnect | rfFAST)
  1519. X#define rConnect9600    ( 9600  | rfConnect | rfV32)
  1520. X
  1521. XDCE_RESULT DCE_results[] =
  1522. X{
  1523. X    { "OK",                        rOk,            },
  1524. X    { "NO CARRIER",                rNoCarrier,        },
  1525. X    { "ERROR",                    rError            },
  1526. X    { "NO DIALTONE",            rNoDialTone,    },
  1527. X    { "BUSY",                    rBusy            },
  1528. X    { "NO ANSWER",                rNoAnswer        },
  1529. X    { "RRING",                    rRring            },
  1530. X    { "CONNECT 300/REL",        rConnect300R    },
  1531. X    { "CONNECT 1200/REL",        rConnect1200R    },
  1532. X    { "CONNECT 2400/REL",        rConnect2400R    },
  1533. X    { "CONNECT 300",            rConnect300        },
  1534. X    { "CONNECT 1200",            rConnect1200    },
  1535. X    { "CONNECT 2400",            rConnect2400    },
  1536. X    { "CONNECT 9600",            rConnect9600    },
  1537. X    { "CONNECT FAST/KERM",        rConnectFASTK    },
  1538. X    { "CONNECT FAST/XMDM",        rConnectFASTX    },
  1539. X    { "CONNECT FAST/UUCP",        rConnectFASTU    },
  1540. X    { "CONNECT FAST",            rConnectFAST    },
  1541. X    { (char *)0,                -1                }        /* end table */
  1542. X};
  1543. X
  1544. X#include "tbit.sync.h"
  1545. X
  1546. X/*+-------------------------------------------------------------------------
  1547. X    DCE_baud_to_CBAUD(baud) - check for valid baud rates supported by DCE
  1548. X
  1549. X  DCE dependent function must validate baud rates supported by DCE
  1550. X  returns baud rate in struct termio c_cflag fashion
  1551. X  or terminates program with error
  1552. X--------------------------------------------------------------------------*/
  1553. Xint
  1554. XDCE_baud_to_CBAUD(baud)
  1555. Xunsigned int baud;
  1556. X{
  1557. X    switch(baud)
  1558. X    {
  1559. X        case 110:  return(B110);
  1560. X        case 300:  return(B300);
  1561. X        case 1200: return(B1200);
  1562. X        case 2400: return(B2400);
  1563. X        case 9600: return(B9600);
  1564. X
  1565. X#if defined(B19200)
  1566. X        case 19200: return(B19200);
  1567. X#else
  1568. X#ifdef EXTA
  1569. X        case 19200: return(EXTA);
  1570. X#endif
  1571. X#endif
  1572. X
  1573. X#if defined(B38400)
  1574. X        case 38400: return(B38400);
  1575. X#else
  1576. X#ifdef EXTB
  1577. X        case 38400: return(EXTB);
  1578. X#endif
  1579. X#endif
  1580. X
  1581. X    }
  1582. X    myexit(RC_FAIL | RCE_SPEED);
  1583. X#if defined(OPTIMIZE) || defined(__OPTIMIZE__)    /* don't complain */
  1584. X    return(0);    /* keep gcc from complaining about no rtn at end */
  1585. X#endif
  1586. X}    /* end of DCE_baud_to_CBAUD */
  1587. X
  1588. X/*+-------------------------------------------------------------------------
  1589. X    init_T2500() - init T2500 from scratch, assuming nothing
  1590. X
  1591. X    reset to factory defaults, then set
  1592. X    E0          no local echo in command mode
  1593. X    F1          no local echo in data transfer mode
  1594. X    M0          speaker off
  1595. X    Q4          generate reult codes, but not RING
  1596. X    V1          verbal result codes
  1597. X    X3          extended result codes
  1598. X    S0=1        answer on first ring
  1599. X    S2=255        escape to unusual value
  1600. X    S11=50      50 msec DTMF timing
  1601. X    S45=1       enable remote access
  1602. X    S48=1       all 8 bits are significant
  1603. X    S50=0       use automatic connect speed determination
  1604. X    S51=252     set serial port baud rate automatically (no typeahead)
  1605. X    S52=4       DTR low: drop connection and go into command mode
  1606. X    S54=3       pass BREAK signal to remote modem
  1607. X    S55=0       respond to command escape sequence
  1608. X    S58=2       DTE uses CTS/RTS flow control.
  1609. X    S64=1       ignore characters sent by DTE while answering
  1610. X    S66=0       don't lock interface speed, just go with the flow.
  1611. X    S68=255     DCE uses whatever flow control DTE uses
  1612. X    S92=1       PEP tones at the end of answer sequence
  1613. X    S95=0       no MNP
  1614. X    S110=255    use data compression when the remote modem requests it.
  1615. X    S111=255    accept any protocol
  1616. X    S131=1      DCD follows carrier
  1617. X
  1618. XThe nvram is set to factory + E0 Q0 S52=4 S131=1 S51=252 
  1619. X--------------------------------------------------------------------------*/
  1620. Xvoid
  1621. Xinit_T2500()
  1622. X{
  1623. Xregister itmp;
  1624. Xint maxretry = 4;
  1625. Xchar *init0="AT&F E0 Q0 S52=4 S131=1 S51=252 &w F1 M0 Q4 V1 X3\r";
  1626. Xchar *init1="ATS0=1 S2=255 S11=50 S45=1 S48=1 S50=0 S54=3\r";
  1627. Xchar *init2="ATS55=0 S58=2 S64=1 S66=0 S68=255 S92=1 S95=0 S110=255 S111=255\r";
  1628. X
  1629. X    DEBUG(1,"--> initializing %s on ",DCE_name);
  1630. X    DEBUG(1,"%s\n",dce_name);
  1631. X
  1632. X    lflash_DTR();
  1633. X    sync_Telebit();
  1634. X
  1635. X    /*
  1636. X     * set to factory default (bless them for this command)
  1637. X     * and a few initial beachhead values
  1638. X     */
  1639. X    for(itmp = 0; itmp < maxretry; itmp++)
  1640. X    {
  1641. X        lwrite(init0);
  1642. X        if(lread(5) == rOk)
  1643. X            break;
  1644. X    }
  1645. X    if(itmp == maxretry)
  1646. X    {
  1647. X        DEBUG(1,"INIT FAILED (init0)\n",0);
  1648. X        myexit(RC_FAIL | RCE_TIMOUT);
  1649. X    }
  1650. X
  1651. X    /*
  1652. X     * send initialization string 1
  1653. X     */
  1654. X    for(itmp = 0; itmp < maxretry; itmp++)
  1655. X    {
  1656. X        lwrite(init1);
  1657. X        if(lread(5) == rOk)
  1658. X            break;
  1659. X    }
  1660. X    if(itmp == maxretry)
  1661. X    {
  1662. X        DEBUG(1,"INIT FAILED (init1)\n",0);
  1663. X        myexit(RC_FAIL | RCE_TIMOUT);
  1664. X    }
  1665. X
  1666. X    /*
  1667. X     * send initialization string 2
  1668. X     */
  1669. X    for(itmp = 0; itmp < maxretry; itmp++)
  1670. X    {
  1671. X        lwrite(init2);
  1672. X        if(lread(5) == rOk)
  1673. X            break;
  1674. X    }
  1675. X    if(itmp == maxretry)
  1676. X    {
  1677. X        DEBUG(1,"INIT FAILED (init2)\n",0);
  1678. X        myexit(RC_FAIL | RCE_TIMOUT);
  1679. X    }
  1680. X
  1681. X}    /* end of init_T2500 */
  1682. X
  1683. X/*+-------------------------------------------------------------------------
  1684. X    DCE_hangup() - issue hangup command to DCE
  1685. X
  1686. XThis function should do whatever is necessary to ensure
  1687. X1) any active connection is terminated
  1688. X2) the DCE is ready to receive an incoming call if DTR is asserted
  1689. X3) the DCE will not accept an incoming call if DTR is false
  1690. X
  1691. XThe function should return when done.
  1692. X
  1693. XAny necessary switch setting or other configuration necessary for this
  1694. Xfunction to succeed should be documented at the top of the module.
  1695. X--------------------------------------------------------------------------*/
  1696. Xvoid
  1697. XDCE_hangup()
  1698. X{
  1699. X    DEBUG(4,"--> hanging up %s\n",dce_name);
  1700. X    init_T2500();
  1701. X
  1702. X}    /* end of DCE_hangup */
  1703. X
  1704. X/*+-------------------------------------------------------------------------
  1705. X    DCE_dial(telno_str) - dial a remote DCE
  1706. X
  1707. XThis function should connect to the remote DCE and use any success
  1708. Xindication to modify the tty baud rate if necessary before returning.
  1709. X
  1710. XUpon successful connection, return 0.
  1711. X
  1712. XUpon unsuccessful connection, return RC_FAIL or'd with an appropriate
  1713. XRCE_XXX value from dialer.h.
  1714. X
  1715. Xlwrite() is used to write to the DCE.
  1716. X
  1717. Xlread() and lread_ignore() are used to read from the DCE.  Read timeouts
  1718. Xfrom calling lread() will result automatically in the proper error
  1719. Xtermination of the program.  Read timeouts from calling lread_ignore()
  1720. Xreturn -1; you handle the execption here.
  1721. X
  1722. XAny necessary coding of phone numbers, switch settings or other
  1723. Xconfiguration necessary for this function to succeed should be
  1724. Xdocumented at the top of the module.
  1725. X
  1726. XT2500-specific comments:
  1727. X S0=0        dont allow connect while dialing
  1728. X S54=3       pass BREAK signal to remote modem
  1729. X S64=0       abort dialing if characters sent by DTE
  1730. X S66=1       lock the interface speed
  1731. X S110=0      disable data compression unless requested otherwise
  1732. X--------------------------------------------------------------------------*/
  1733. Xint
  1734. XDCE_dial(telno_str)
  1735. Xchar *telno_str;
  1736. X{
  1737. Xchar cmd[128];
  1738. Xchar phone[50];
  1739. Xint s111_set = 0;
  1740. Xint timeout;
  1741. Xint result;
  1742. Xint rrings = 0;
  1743. Xlong then;
  1744. Xlong now;
  1745. Xchar *cptr;
  1746. Xchar *dialout_default = "ATS0=0S7=40S54=3S64=0S66=1S110=0\r";
  1747. X#define MDVALID     "0123456789CcEeFfKkMmNnPpRrSsUuWwXxVv*#,!/()-"
  1748. X#ifdef WHT
  1749. X#define RRING_MAX 3
  1750. X#else
  1751. X#define RRING_MAX 6
  1752. X#endif
  1753. X
  1754. X/* preliminary setup */
  1755. X    translate("=,-,",telno_str);
  1756. X    if(strspn(telno_str,MDVALID) != strlen(telno_str))
  1757. X    {
  1758. X        DEBUG(1,"phone number has invalid characters\n",0);
  1759. X        return(RC_FAIL | RCE_PHNO);
  1760. X    }
  1761. X    if(decode_phone_number(telno_str,phone,sizeof(phone)))
  1762. X    {
  1763. X        DEBUG(1,"phone number too long\n",0);
  1764. X        return(RC_FAIL | RCE_PHNO);
  1765. X    }
  1766. X
  1767. X/* walk through dialer codes, doing custom setup */
  1768. X    strcpy(cmd,"AT");
  1769. X    cptr = cmd + strlen(cmd);
  1770. X    if(dialer_codes['C' - 'A'])
  1771. X    {
  1772. X        DEBUG(5,"COMPRESSION requested\n",0);
  1773. X        strcat(cmd,"S110=1");
  1774. X    }
  1775. X    if(dialer_codes['E' - 'A'])
  1776. X    {
  1777. X        DEBUG(5,"ECHO SUPPRESSION requested\n",0);
  1778. X        strcat(cmd,"S121=1");
  1779. X    }
  1780. X    if(dialer_codes['F' - 'A'])
  1781. X    {
  1782. X        DEBUG(5,"XON/XOFF FLOW CONTROL requested\n",0);
  1783. X        strcat(cmd,"S58=3");
  1784. X    }
  1785. X    if(dialer_codes['K' - 'A'])
  1786. X    {
  1787. X        DEBUG(5,"KERMIT requested\n",0);
  1788. X        strcat(cmd,"S111=10");
  1789. X        s111_set++;
  1790. X    }
  1791. X    if(dialer_codes['X' - 'A'])
  1792. X    {
  1793. X        DEBUG(5,"XMODEM requested\n",0);
  1794. X        strcat(cmd,"S111=20");
  1795. X        s111_set++;
  1796. SHAR_EOF
  1797. true || echo 'restore of gendial/dceT2500.c failed'
  1798. fi
  1799. echo 'End of ecu320 part 28'
  1800. echo 'File gendial/dceT2500.c is continued in part 29'
  1801. echo 29 > _shar_seq_.tmp
  1802. exit 0
  1803.  
  1804. exit 0 # Just in case...
  1805.