home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / old / ckermit5a190 / ckcfn2.c < prev    next >
C/C++ Source or Header  |  2020-01-01  |  54KB  |  1,658 lines

  1. /*  C K C F N 2  --  System-independent Kermit protocol support functions... */
  2.  
  3. /*  ...Part 2 (continued from ckcfns.c)  */
  4.  
  5. /*
  6.   Author: Frank da Cruz (fdc@columbia.edu, FDCCU@CUVMA.BITNET),
  7.   Columbia University Academic Information Systems, New York City.
  8.  
  9.   Copyright (C) 1985, 1994, Trustees of Columbia University in the City of New
  10.   York.  The C-Kermit software may not be, in whole or in part, licensed or
  11.   sold for profit as a software product itself, nor may it be included in or
  12.   distributed with commercial products or otherwise distributed by commercial
  13.   concerns to their clients or customers without written permission of the
  14.   Office of Kermit Development and Distribution, Columbia University.  This
  15.   copyright notice must not be removed, altered, or obscured.
  16. */
  17. /*
  18.  Note -- if you change this file, please amend the version number and date at
  19.  the top of ckcfns.c accordingly.
  20. */
  21.  
  22. #include "ckcsym.h"            /* Compilation options */
  23. #include "ckcdeb.h"            /* Debugging and other symbols */
  24. #include "ckcasc.h"            /* ASCII symbols */
  25. #include "ckcker.h"            /* Kermit symbols */
  26. #include "ckcxla.h"            /* Translation */
  27.  
  28. #ifdef TCPSOCKET            /* For TELNET business in spack() */
  29. #ifndef NP_TELNET            /* Avoid dragging in ckcnet.h */
  30. #define NP_TELNET  1
  31. #define TNL_CR     0            /* CR sends bare carriage return */
  32. #define TNL_CRNUL  1            /* CR and NUL */
  33. #define TNL_CRLF   2            /* CR and LF */
  34. #endif /* NP_TELNET */
  35. extern int tn_nlm, ttnproto;
  36. #endif /* TCPSOCKET */
  37.  
  38. #ifdef DYNAMIC
  39. extern struct pktinfo *s_pkt;        /* array of pktinfo structures */
  40. extern struct pktinfo *r_pkt;        /* array of pktinfo structures */
  41. #else
  42. extern struct pktinfo s_pkt[];        /* array of pktinfo structures */
  43. extern struct pktinfo r_pkt[];        /* array of pktinfo structures */
  44. #endif /* DYNAMIC */
  45.  
  46. extern int sseqtbl[], rseqtbl[], sbufuse[], sacktbl[], wslots, winlo,
  47.   sbufnum, rbufnum, pktpaus;
  48.  
  49. extern int ttprty;            /* from ckutio.c */
  50. extern int autopar;
  51.  
  52. extern int spsiz, spmax, rpsiz, timint, timef, npad;
  53. extern int rpt, rptq, rptflg, capas, spsizf, en_fin, tsecs, network, flow;
  54. extern int pktnum, sndtyp, rcvtyp, bctr, bctu, bctl, rsn, rln, maxtry, size;
  55. extern int osize, maxsize, spktl, rpktl, nfils, stdouf, warn, parity;
  56. extern int turn, turnch,  delay, displa, pktlog, tralog, seslog, xflg, mypadn;
  57. extern int hcflg, local, server, cxseen, czseen, discard;
  58. extern int nakstate, quiet, success, xitsta, what;
  59. extern int spackets, rpackets, timeouts, retrans, crunched, urpsiz;
  60.  
  61. extern long filcnt, filrej, ffc, flci, flco, tlci, tlco, tfc, speed;
  62.  
  63. extern char *cmarg, filnam[], *hlptxt;
  64.  
  65. extern CHAR padch, mypadc, eol, seol, ctlq, sstate;
  66. extern CHAR *recpkt, *data, myinit[];
  67. extern CHAR *srvptr, stchr, mystch, *rdatap;
  68. extern CHAR padbuf[];
  69. #ifdef pdp11
  70.   extern CHAR srvcmd[];
  71.   extern CHAR *pktmsg;
  72. #else
  73. #ifdef DYNAMIC
  74.   extern CHAR *srvcmd;
  75.   extern CHAR *pktmsg;
  76. #else
  77.   extern CHAR srvcmd[];
  78.   extern CHAR pktmsg[];
  79. #endif /* DYNAMIC */
  80. #endif /* pdp11 */
  81.  
  82. int numerrs = 0;        /* Number of packet errors so far */
  83.  
  84. static CHAR p_tbl[] = {            /* Even parity table for dopar(). */
  85.     (CHAR) '\000',            /* ANSI C casts '\ooo' constants  */
  86.     (CHAR) '\201',            /* to signed char, so we have to  */
  87.     (CHAR) '\202',            /* cast back to unsigned char...  */
  88.     (CHAR) '\003',
  89.     (CHAR) '\204',
  90.     (CHAR) '\005',
  91.     (CHAR) '\006',
  92.     (CHAR) '\207',
  93.     (CHAR) '\210',
  94.     (CHAR) '\011',
  95.     (CHAR) '\012',
  96.     (CHAR) '\213',
  97.     (CHAR) '\014',
  98.     (CHAR) '\215',
  99.     (CHAR) '\216',
  100.     (CHAR) '\017',
  101.     (CHAR) '\220',
  102.     (CHAR) '\021',
  103.     (CHAR) '\022',
  104.     (CHAR) '\223',
  105.     (CHAR) '\024',
  106.     (CHAR) '\225',
  107.     (CHAR) '\226',
  108.     (CHAR) '\027',
  109.     (CHAR) '\030',
  110.     (CHAR) '\231',
  111.     (CHAR) '\232',
  112.     (CHAR) '\033',
  113.     (CHAR) '\234',
  114.     (CHAR) '\035',
  115.     (CHAR) '\036',
  116.     (CHAR) '\237',
  117.     (CHAR) '\240',
  118.     (CHAR) '\041',
  119.     (CHAR) '\042',
  120.     (CHAR) '\243',
  121.     (CHAR) '\044',
  122.     (CHAR) '\245',
  123.     (CHAR) '\246',
  124.     (CHAR) '\047',
  125.     (CHAR) '\050',
  126.     (CHAR) '\251',
  127.     (CHAR) '\252',
  128.     (CHAR) '\053',
  129.     (CHAR) '\254',
  130.     (CHAR) '\055',
  131.     (CHAR) '\056',
  132.     (CHAR) '\257',
  133.     (CHAR) '\060',
  134.     (CHAR) '\261',
  135.     (CHAR) '\262',
  136.     (CHAR) '\063',
  137.     (CHAR) '\264',
  138.     (CHAR) '\065',
  139.     (CHAR) '\066',
  140.     (CHAR) '\267',
  141.     (CHAR) '\270',
  142.     (CHAR) '\071',
  143.     (CHAR) '\072',
  144.     (CHAR) '\273',
  145.     (CHAR) '\074',
  146.     (CHAR) '\275',
  147.     (CHAR) '\276',
  148.     (CHAR) '\077',
  149.     (CHAR) '\300',
  150.     (CHAR) '\101',
  151.     (CHAR) '\102',
  152.     (CHAR) '\303',
  153.     (CHAR) '\104',
  154.     (CHAR) '\305',
  155.     (CHAR) '\306',
  156.     (CHAR) '\107',
  157.     (CHAR) '\110',
  158.     (CHAR) '\311',
  159.     (CHAR) '\312',
  160.     (CHAR) '\113',
  161.     (CHAR) '\314',
  162.     (CHAR) '\115',
  163.     (CHAR) '\116',
  164.     (CHAR) '\317',
  165.     (CHAR) '\120',
  166.     (CHAR) '\321',
  167.     (CHAR) '\322',
  168.     (CHAR) '\123',
  169.     (CHAR) '\324',
  170.     (CHAR) '\125',
  171.     (CHAR) '\126',
  172.     (CHAR) '\327',
  173.     (CHAR) '\330',
  174.     (CHAR) '\131',
  175.     (CHAR) '\132',
  176.     (CHAR) '\333',
  177.     (CHAR) '\134',
  178.     (CHAR) '\335',
  179.     (CHAR) '\336',
  180.     (CHAR) '\137',
  181.     (CHAR) '\140',
  182.     (CHAR) '\341',
  183.     (CHAR) '\342',
  184.     (CHAR) '\143',
  185.     (CHAR) '\344',
  186.     (CHAR) '\145',
  187.     (CHAR) '\146',
  188.     (CHAR) '\347',
  189.     (CHAR) '\350',
  190.     (CHAR) '\151',
  191.     (CHAR) '\152',
  192.     (CHAR) '\353',
  193.     (CHAR) '\154',
  194.     (CHAR) '\355',
  195.     (CHAR) '\356',
  196.     (CHAR) '\157',
  197.     (CHAR) '\360',
  198.     (CHAR) '\161',
  199.     (CHAR) '\162',
  200.     (CHAR) '\363',
  201.     (CHAR) '\164',
  202.     (CHAR) '\365',
  203.     (CHAR) '\366',
  204.     (CHAR) '\167',
  205.     (CHAR) '\170',
  206.     (CHAR) '\371',
  207.     (CHAR) '\372',
  208.     (CHAR) '\173',
  209.     (CHAR) '\374',
  210.     (CHAR) '\175',
  211.     (CHAR) '\176',
  212.     (CHAR) '\377'
  213. };
  214.  
  215. /* CRC generation tables */
  216.  
  217. static long crcta[16] = { 0L, 010201L, 020402L, 030603L, 041004L,
  218.   051205L, 061406L, 071607L, 0102010L, 0112211L, 0122412L, 0132613L, 0143014L,
  219.   0153215L, 0163416L, 0173617L };
  220.  
  221. static long crctb[16] = { 0L, 010611L, 021422L, 031233L, 043044L,
  222.   053655L, 062466L, 072277L, 0106110L, 0116701L, 0127532L, 0137323L, 0145154L,
  223.   0155745L, 0164576L, 0174367L };
  224.  
  225.  
  226. /*  I N P U T  --  Attempt to read packet number 'pktnum'.  */
  227.  
  228. /*
  229.  This is the function that feeds input to Kermit's finite state machine,
  230.  in the form of a character in the range 32-126, normally a packet type
  231.  (uppercase letter) or pseudo-packet-type (lowercase letter).
  232.  
  233.  If a special start state is in effect, that state is returned as if it were
  234.  the type of an incoming packet.
  235. */
  236. int
  237. input() {
  238.     int type;                /* Received packet type */
  239.     int x, y, k;            /* Workers */
  240.     int z, pi, nf;            /* Worker, packet index, NAK flag */
  241.  
  242.     debug(F101,"input sstate","",sstate);
  243.     debug(F101," nakstate","",nakstate);
  244.     debug(F000," sndtyp","",sndtyp);
  245.  
  246.     while (1) {                /* Big loop... */
  247.  
  248.     if (sstate != 0) {        /* If a start state is in effect, */
  249.         type = sstate;        /* return it like a packet type, */
  250.         sstate = 0;            /* and then nullify it. */
  251.         numerrs = 0;        /* (PWP) no errors so far */
  252.         return(type);
  253.     }
  254.     
  255.     if (nakstate) {            /* This section for file receiver. */
  256.  
  257.         if (wslots > 1) {        /* If we're doing windows, */
  258.         x = rseqtbl[winlo];    /* see if desired packet already in. */
  259.         debug(F101," winlo","",winlo);
  260.         debug(F101," rseqtbl[winlo]","",rseqtbl[winlo]);
  261.         if (x > -1) {        /* Already there? */
  262.             if (r_pkt[x].pk_seq == winlo) { /* (double check) */
  263.             rsn = winlo;                /* Yes, return its info */
  264.             debug(F101,"input return pre-stashed packet","",rsn);
  265.             dumprbuf();
  266.             rdatap = r_pkt[x].pk_adr;   /* like rpack would do. */
  267.             rln = (int)strlen((char *) rdatap);
  268.             type = r_pkt[x].pk_typ;
  269.             break;
  270.             }
  271.         }
  272.         }
  273.         type = rpack();            /* Try to read a packet. */
  274.         debug(F111,"input recv",(char *) rdatap,(int) type);
  275.         while (type == 'e') {    /* Handle echoes */
  276.         debug(F000,"echo discarded","",type);
  277.         type = rpack();    
  278.         }        
  279.         if (type < -1) return('q'); /* Ctrl-C */
  280.         if (type < 0) {        /* Receive window full */
  281.         /* Another thing to do here would be to delete */
  282.         /* the highest packet and NAK winlo.  But that */
  283.         /* shouldn't be necessary since the other Kermit */
  284.         /* should not have sent a packet outside the window. */
  285.         debug(F101,"rpack receive window full","",0);
  286.         dumprbuf();
  287.         errpkt((CHAR *)"Receive window full.");
  288.         strcpy((char *)pktmsg,"Receive window full.");
  289.         type = 'E';
  290.         break;
  291.         }
  292.         dumprbuf();
  293.  
  294.         if (chkint() < 0) {        /* Check for console interrupts. */
  295.         errpkt((CHAR *)"User cancelled.");
  296.         strcpy((char *)pktmsg,"User cancelled.");
  297.         type = 'E';
  298.         break;
  299.         }
  300.         if (type == 'E') {
  301.         debug(F101,"input got E, nakstate","",nakstate);
  302.         break;            /* Error packet */
  303.         }
  304.         if (type == 'Q') {        /* Crunched packet. */
  305.         crunched++;
  306.         numerrs++;
  307. /*
  308.   Packet arrived damaged.  It was most likely the packet we were expecting
  309.   next, so we send a NAK for that packet.  Prior to 5A(189), we always
  310.   NAK'd winlo here, but that was bad because if two (or more) different
  311.   packets were damaged, we would keep NAKing the first one and never NAK the
  312.   other ones, which could result in a lengthy series of timeouts.  Now we
  313.   NAK the oldest as-yet-unNAK'd missing packet.
  314. */
  315.         z = (winlo + wslots) % 64;  /* Search from winlo to z */
  316.         debug(F101,"ZZZ crunched z","",z);
  317.         nf = 0;                /* NAK flag not set yet */
  318.         for (x = winlo; x != z; x = (x + 1) % 64) {
  319.             debug(F101,"ZZZ x","",x);
  320.             if (rseqtbl[x] > -1) /* Have I received packet x? */
  321.               continue;         /* Yes, go on. */
  322.             debug(F101,"ZZZ x not recd yet","",x);
  323.             pi = sseqtbl[x];     /* No, have I NAK'd it yet? */
  324.             if (pi < 0 || s_pkt[pi].pk_rtr == 0) {
  325.             debug(F101,"ZZZ x not NAK'd yet","",x);
  326.             nack(x);     /* No, NAK it now. */
  327.             nf = 1;         /* Flag that I did. */
  328.             break;
  329.             }
  330.         }
  331.         if (!nf) {        /* If we didn't NAK anything above, */
  332.             debug(F101,"ZZZ NAKing winlo","",winlo);
  333.             if (nack(winlo) < 0) { /* we have to NAK winlo (again) */
  334.             errpkt((CHAR *)"Too many retries."); /* Too many */
  335.             strcpy((char *)pktmsg,"Timed out."); /* Give up */
  336.             type = 'E';
  337.             break;
  338.             }
  339.         } 
  340.         continue;
  341.         }
  342.  
  343.         if (type == 'T') {        /* Timeout */
  344.         timeouts++;
  345.         debug(F101,"input receive-state timeout, winlo","",winlo);
  346.         /* NAK only the packet at window-low */
  347.         debug(F101,"input sending NAK for winlo","",winlo);
  348.         if (nack(winlo) < 0) {
  349.             debug(F101,"input sent too many naks","",winlo);
  350.             errpkt((CHAR *)"Too many retries.");
  351.             strcpy((char *)pktmsg,"Sent too many NAKs.");
  352.             type = 'E';
  353.             break;
  354.         } else continue;
  355.         }
  356.  
  357.         if (rsn == winlo) {        /* Got the packet we want, done. */
  358.         debug(F101,"input rsn=winlo","",rsn);
  359.         break;
  360.         }
  361.  
  362.         /* Got a packet out of order. */
  363.  
  364.         debug(F101,"input recv got packet out of order","",rsn);
  365.         k = rseqtbl[rsn];        /* Get window slot of this packet. */
  366.         debug(F101,"input recv rseqtbl[rsn]","",k);
  367.         if (k < 0) {
  368.         debug(F101,"input recv can't find index for rcvd pkt","",rsn);
  369.         /* Was "Internal error 21" */
  370.         errpkt((CHAR *)"Sliding windows protocol error.");
  371.         strcpy((char *)pktmsg,"Sliding windows protocol error.");
  372.         type = 'E';
  373.         break;
  374.         }        
  375.         y = chkwin(rsn,winlo,wslots); /* See what window it's in. */
  376.         debug(F101,"input recv chkwin","",y);
  377.         if (y == 1) {        /* From previous window. */
  378.         resend(rsn);        /* Resend the ACK (might have data) */
  379.         freerpkt(rsn);        /* Get rid of received packet */
  380.         continue;
  381.         } else {            /* In this window or out of range */
  382.         if (y < 0)        /* If out of range entirely, */
  383.           freerpkt(rsn);    /* release its buffer */
  384.  
  385. #ifdef COMMENT /* Ignore this and read what comes afterwards... */
  386. /*
  387.   We have received a packet, but not the one we want.  It would seem to
  388.   make sense to always send a NAK for the most desired packet (winlo).  But
  389.   consider this scenario: a packet arrived damaged so we NAK'd it above;
  390.   then packets winlo+1, winlo+2, ... winlo+n arrive, each one making us
  391.   send another NAK for winlo, so the other Kermit gets n NAKs for winlo, and
  392.   either would have to resend it n times, or if n > retry limit, give up
  393.   because of too many retries.  So we compromise: If a packet arrives
  394.   that is not the most desired packet (winlo), we NAK winlo, BUT ONLY IF
  395.   it has not been NAK'd before.
  396. */
  397.         x = sseqtbl[winlo];    /* Get index of most desired packet */
  398.         if (s_pkt[x].pk_rtr == 0 ||   /* Not NAK'd before? */
  399.             rbufnum < 1) {          /* Or receive window full? */
  400.             if (nack(winlo) < 0) {    /* One or both, so NAK it now. */
  401.             errpkt((CHAR *)"Too many retries."); /* Too many */
  402.             strcpy((char *)pktmsg,"Timed out."); /* Give up */
  403.             type = 'E';
  404.             break;
  405.             } else continue;
  406.         } else continue;
  407. #endif /* COMMENT */
  408.  
  409. /*
  410.   In version 5A(189), the strategy was revised to send NAKs for the oldest
  411.   missing packet that had not been NAK'd before, which requires a search.
  412.   Thus, if winlo was already NAK'd, instead of doing nothing, we send a NAK
  413.   for the "lowest" as-yet-unNAK'd missing packet.
  414.  
  415.   If our receive window is full, however, we have no choice but to NAK winlo:
  416. */
  417.         debug(F101,"XXX checking rbufnum","",rbufnum);
  418.         if (rbufnum < 1) {          /* Receive window full? */
  419.             debug(F101,"XXX out of buffers","",rbufnum);
  420.             if (nack(winlo) < 0) {    /* No choice, must NAK winlo. */
  421.             errpkt((CHAR *)"Too many retries."); /* Too many */
  422.             strcpy((char *)pktmsg,"Timed out."); /* Give up */
  423.             type = 'E';
  424.             break;
  425.             } else continue;
  426.         }
  427. /*
  428.   Receive window not full.  This is a packet in the current window but it is
  429.   not the desired packet at winlo.  So therefore there are gaps before this
  430.   packet.  So we find the "lowest" unNAK'd missing packet, if any, between
  431.   winlo and this one, and NAK it.  If there are no as-yet-unNAK'd missing
  432.   packets in the window, then we send nothing and go wait for another packet.
  433.   In theory, this could result in a timeout, but in practice it is likely that
  434.   the already-NAK'd missing packets are already on their way.  Note, we do not
  435.   NAK ahead of ourselves, as that only creates unnecessary retransmissions.
  436. */
  437.         debug(F101,"XXX winlo","",winlo);
  438.         for (x = winlo; x != rsn; x = (x + 1) % 64) {
  439.             debug(F101,"XXX x","",x);
  440.             if (rseqtbl[x] > -1) /* Have I received packet x? */
  441.               continue;         /* Yes, check next sequence number. */
  442.             debug(F101,"XXX missing pkt","",x);
  443.             pi = sseqtbl[x];     /* No, have I NAK'd it yet? */
  444.             if (pi < 0 || s_pkt[pi].pk_rtr == 0) {
  445.             nack(x);     /* No, NAK it now. */
  446.             debug(F101,"XXX nak","",x);
  447.             break;
  448.             }
  449.         }
  450.         }
  451. /*!!!*/
  452.     } else {            /* Otherwise file sender... */
  453.  
  454.         if (wslots > 1) {        /* Packet at winlo already ACK'd? */
  455.         if (sacktbl[winlo]) {    /* If so,  */
  456.             sacktbl[winlo] = 0;       /* Turn off the ACK'd flag */
  457.             winlo = (winlo + 1) % 64; /* Rotate the window */
  458.             type = 'Y';        /* And return ACK */
  459.             debug(F101,
  460.               "input send returning pre-stashed ACK","",
  461.               winlo-1);
  462.             break;
  463.         }
  464.         }
  465.         type = rpack();        /* Try to read an acknowledgement */
  466.         debug(F111,"input send",(char *) rdatap,(int) type);
  467.         while (type == 'e') {    /* Handle echoes */
  468.         debug(F000,"echo discarded","",type);
  469.         type = rpack();    
  470.         }        
  471.         if (type == -2) return('q');
  472.         if (type == -1) {
  473.         errpkt((CHAR *)"Receive window full");    /* was "internal */
  474.         debug(F101," wslots","",wslots);    /* error 18" */
  475.         debug(F101," winlo","",winlo);
  476.         debug(F101," pktnum","",pktnum);
  477.         dumprbuf();
  478.         strcpy((char *)pktmsg,"Can't allocate receive buffer");
  479.         type = 'E';
  480.         break;
  481.         }
  482.         dumprbuf();            /* debugging */
  483.  
  484.         if (chkint() < 0) {        /* Check for console interrupts. */
  485.         errpkt((CHAR *)"User cancelled.");
  486.         strcpy((char *)pktmsg,"User cancelled.");
  487.         return(type = 'E');
  488.         }
  489.  
  490.         /* got a packet */
  491.  
  492.         if (type == 'E') {
  493.         debug(F101,"input send got E, nakstate","",nakstate);
  494.         break;            /* Error packet */
  495.         }
  496.         if (type == 'Q') {        /* Crunched packet */ 
  497.         crunched++;        /* For statistics */
  498.         numerrs++;        /* For packet resizing */
  499.         x = resend(winlo);    /* Resend window-low */
  500.         if (x < 0) {
  501.             type = 'E';
  502.             errpkt(pktmsg);
  503.             break;
  504.         }
  505.         continue;
  506.         }
  507.         if (type == 'T') {        /* Timeout waiting for ACKs. */
  508.         timeouts++;        /* Count it */
  509.         numerrs++;        /* Count an error too */
  510.         debug(F101,"input send state timeout, winlo","",winlo);
  511.  
  512.         /* Retransmit the oldest un-ACK'd packet. */
  513.  
  514.         debug(F101,"input send resending winlo","",winlo);
  515.         if (resend(winlo) < 0) { /* Check retries */
  516.             debug(F101,"input send too many resends","",maxtry);
  517.             errpkt(pktmsg);
  518.             return(type = 'E');
  519.         }
  520.         continue;
  521.         }
  522.  
  523.         /* Got an actual normal packet */
  524.  
  525.         y = chkwin(rsn,winlo,wslots); /* Is it in the window? */
  526.         debug(F101,"input send rsn","",rsn);
  527.         debug(F101,"input send winlo","",winlo);
  528.         debug(F101,"input send chkwin","",y);
  529.  
  530.         if (type == 'Y') {        /* Got an ACK */
  531.         if (y == 0) {        /* In current window */
  532.             x = sseqtbl[rsn];    /* Mark the packet as ACK'd */
  533.             if (x > -1) s_pkt[x].pk_flg++;  /* (old way) */
  534.             sacktbl[rsn]++;                /* (new way) */
  535. /*
  536.   NOTE: The following statement frees the buffer of the ACK we just got.
  537.   But the upper layers still need the data, like if it's the ACK to an I,
  538.   S, F, D, Z, or just about any kind of packet.  So for now, freerbuf()
  539.   deallocates the buffer, but does not erase the data or destroy the pointer
  540.   to it.  There's no other single place where these receive buffers can be
  541.   correctly freed (?) ...
  542. */
  543.             freerpkt(rsn);    /* Free the ACK's buffer */
  544.             freesbuf(rsn);    /* *** Free the sent packet's buffer */
  545.             if (rsn == winlo) {    /* Got the one we want */
  546.             sacktbl[winlo] = 0;
  547.             winlo = (winlo + 1) % 64;
  548.             debug(F101,"input send rotated send window","",winlo);
  549.             break;        /* Return the ACK */
  550.             } else {
  551.             debug(F101,"input send mark pkt","",rsn);
  552.             continue;    /* Otherwise go read another packet */
  553.             }
  554.         } else if (y == 1 && wslots < 2) { /* (190) ACK for previous */
  555.             numerrs++;        /* == NAK for current, count error */
  556.             debug(F101,"input send ACK for previous","",rsn);
  557.             freerpkt(rsn);    /* Free NAK's buffer */
  558.             x = resend(winlo);    /* Resend current packet */
  559.             if (x < 0) {
  560.             type = 'E';
  561.             errpkt(pktmsg);
  562.             break;
  563.             } else continue;    /* Resend ok, go read another packet */
  564.         } else {        /* Other cases, just ignore */
  565.             debug(F101,"input send ACK out of window","",rsn);
  566.             freerpkt(rsn);
  567.             continue;
  568.         }
  569.         }
  570.         if (type == 'N') {        /* NAK */
  571.         numerrs++;        /* Count an error */
  572.         debug(F101,"input send NAK","",rsn);
  573.         freerpkt(rsn);        /* Free buffer where NAK lies. */
  574.         if (y == 0) {        /* In current window */        
  575.             debug(F100," in window","",0);
  576.             k = sseqtbl[rsn];    /* Get pointer to NAK'd packet. */
  577.             if (k < 0 || (k > -1 && s_pkt[k].pk_typ == ' ')) {
  578.             x = resend(winlo); /* Packet we haven't sent yet. */
  579.             } else {
  580.             x = resend(rsn); /* Resend requested packet. */
  581.             }
  582.             if (x < 0) {    /* Resend error is fatal.  */
  583.             type = 'E';
  584.             errpkt(pktmsg);
  585.             break;
  586.             } else continue;    /* Resend ok, go read another packet */
  587.         } else if ((rsn == (pktnum + 1) % 64)) { /* NAK for next pkt */
  588.             if (wslots > 1) {
  589.             debug( F101,"NAK for next packet, windowing","",rsn);
  590.             x = resend(winlo); /* Resend window-low */
  591.             if (x < 0) {
  592.                 type = 'E';
  593.                 errpkt(pktmsg);
  594.                 break;
  595.             }
  596.             continue;    /* Go back and read another pkt */
  597.             }
  598.             debug(F101,"NAK for next packet, no windowing","",rsn);
  599.             x = (rsn == 0) ? 63 : rsn - 1;
  600.             if (x == 0 && (sndtyp == 'S' || sndtyp == 'I')) {
  601.             resend(0);    /* ACK for S or I packet missing */
  602.             continue;    /* so resend it. */
  603.             }            /* Else, treat NAK(n+1) as ACK(n) */
  604.             if ((x = sseqtbl[x]) > -1) {
  605.             sacktbl[x]++;       /* (new way) */
  606.             s_pkt[x].pk_flg++; /* (old way) */
  607.             }
  608.             type = 'Y';        /* Treat it as ACK for last pkt */
  609.             break;
  610.         } else if (y > 0) {    /* NAK for pkt we can't resend */
  611.             debug(F101," NAK out of window","",rsn); /* bad... */
  612.             type = 'E';
  613.             errpkt((CHAR *)"NAK out of window");
  614.             strcpy((char *)pktmsg,"NAK out of window.");
  615.             break;
  616.         } else continue;    /* Ignore other NAKs */
  617.         }                /* End of file-sender NAK handler */
  618.  
  619.             if (rsn == winlo) {        /* Not ACK, NAK, timeout, etc. */
  620.         debug(F000,"input send unexpected type","",type);
  621.         break;
  622.         }
  623.     }                /* End of file-sender section */
  624.     }                    /* End of input() while() loop */
  625.     if (wslots == 1) {
  626.     debug(F100,"input about to flush","",0);
  627.     ttflui();        /* Got what we want, clear input buffer. */
  628.     }
  629.     if (!nakstate)        /* When sending */
  630.       rcalcpsz();        /* recalculate size every packet */
  631.     debug(F000,"input returning type","",type);
  632.     return(rcvtyp = type);    /* Success, return packet type. */
  633. }
  634.  
  635. /*  D O P A R  --  Add an appropriate parity bit to a character  */
  636.  
  637. /*
  638.   (PWP) this is still used in the Mac terminal emulator, so we have to keep it
  639. */
  640. CHAR
  641. #ifdef CK_ANSIC
  642. dopar(register CHAR ch)
  643. #else
  644. dopar(ch) register CHAR ch;
  645. #endif /* CK_ANSIC */
  646.     {
  647.     register unsigned int a;
  648.     if (!parity) return((CHAR) (ch & 255)); else a = ch & 127;
  649.     switch (parity) {
  650.     case 'e':  return(p_tbl[a]);                 /* Even */
  651.     case 'm':  return((CHAR) (a | 128));         /* Mark */
  652.     case 'o':  return((CHAR) (p_tbl[a] ^ 128)); /* Odd */
  653.     case 's':  return((CHAR) a);                 /* Space */
  654.     default:   return((CHAR) a);                 /* Something illegal */
  655.     }
  656. }
  657.  
  658. #ifdef PARSENSE
  659. /*  P A R C H K  --  Check if Kermit packet has parity  */
  660.  
  661. /*
  662.   Call with s = pointer to packet, start = packet start character, n = length.
  663.   Returns 0 if packet has no parity, -1 on error, or, if packet has parity:
  664.     'e' for even, 'o' for odd, 'm' for mark.  Space parity cannot be sensed.
  665.   So a return value of 0 really means either space or none.
  666.   Returns -2 if parity has already been checked during this protocol operation.
  667. */
  668. int
  669. #ifdef CK_ANSIC
  670. parchk(CHAR *s, CHAR start, int n)
  671. #else
  672. parchk(s,start,n) CHAR *s, start; int n;
  673. #endif /* CK_ANSIC */
  674. /* parchk */ {
  675.     CHAR s0, s1, s2, s3;
  676.  
  677.     debug(F101,"parchk n","",n);
  678.     debug(F101,"parchk start","",start);
  679.  
  680.     s0 = s[0] & 0x7f;            /* Mark field (usually Ctrl-A) */
  681.  
  682.     if (s0 != start || n < 5) return(-1); /* Not a valid packet */
  683.  
  684. /* Look at packet control fields, which never have 8th bit set */
  685. /* First check for no parity, most common case. */
  686.  
  687.     if (((s[0] | s[1] | s[2] | s[3]) & 0x80) == 0)
  688.       return(0);            /* No parity or space parity */
  689.  
  690. /* Check for mark parity */
  691.  
  692.     if (((s[0] & s[1] & s[2] & s[3]) & 0x80) == 0x80)
  693.       return('m');            /* Mark parity */
  694.  
  695. /* Packet has some kind of parity */
  696. /* Make 7-bit copies of control fields */
  697.  
  698.     s1 = s[1] & 0x7f;            /* LEN */
  699.     s2 = s[2] & 0x7f;            /* SEQ */
  700.     s3 = s[3] & 0x7f;            /* TYPE */
  701.  
  702. /* Check for even parity */
  703.  
  704.     if ((s[0] == p_tbl[s0]) &&
  705.         (s[1] == p_tbl[s1]) &&
  706.         (s[2] == p_tbl[s2]) &&
  707.     (s[3] == p_tbl[s3]))
  708.       return('e');
  709.  
  710. /* Check for odd parity */
  711.  
  712.     if ((s[0] != p_tbl[s0]) &&
  713.         (s[1] != p_tbl[s1]) &&
  714.         (s[2] != p_tbl[s2]) &&
  715.     (s[3] != p_tbl[s3]))
  716.       return('o');
  717.  
  718. /* Otherwise it's probably line noise.  Let checksum calculation catch it. */
  719.  
  720.     return(-1);
  721. }
  722. #endif /* PARSENSE */
  723.  
  724. /*
  725.   Check to make sure timeout intervals are long enough to allow maximum
  726.   length packets to get through before the timer goes off.  If not, the
  727.   timeout interval is adjusted upwards.
  728.  
  729.   This routine is called at the beginning of a transaction, before we
  730.   know anything about the delay characteristics of the line.  It works
  731.   only for serial communication devices; it trusts the speed reported by
  732.   the operating system.
  733.  
  734.   Call with a timout interval.  Returns it, adjusted if necessary.
  735. */  
  736. int
  737. chktimo(timo,flag) int timo, flag; {
  738.     long cps, z; int x, y;
  739.     debug(F101,"chktimo timo","",timo); /* Timeout before adjustment */
  740.     debug(F101,"chktimo flag","",flag);
  741.  
  742.     if (flag)                /* Don't change timeout if user */
  743.       return(timo);            /* gave SET SEND TIMEOUT command. */
  744.     debug(F101,"chktimo spmax","",spmax);
  745.     debug(F101,"chktimo urpsiz","",urpsiz);
  746.  
  747.     speed = ttgspd();            /* Get current speed. */
  748.     if (speed > 0L && !network) {
  749.     cps = speed / 10L;        /* Convert to chars per second */
  750.     if (cps > 0L) {
  751.         long plen;            /* Maximum of send and rcv pkt size */
  752.         z = cps * (long) timo;    /* Chars per timeout interval */
  753.         z -= z / 10L;        /* Less 10 percent */
  754.         plen = spmax;
  755.         if (urpsiz > spmax) plen = urpsiz;
  756.         debug(F101,"chktimo plen","",plen);
  757.         if (z < plen) {        /* Compare with packet size */
  758.         x = (int) ((long) plen / cps); /* Adjust if necessary */
  759.         y = x / 10;        /* Add 10 percent for safety */
  760.         if (y < 2) y = 2;    /* Or 2 seconds, whichever is more */
  761.         x += y;
  762.         if (x > timo)        /* If this is greater than current */
  763.           timo = x;        /* timeout, change the timeout */
  764.         debug(F101,"chktimo new timo","",timo);
  765.         }
  766.     }
  767.     }
  768.     return(timo);
  769. }
  770.  
  771. /*  S P A C K  --  Construct and send a packet  */
  772.  
  773. /*
  774.   spack() sends a packet of the given type, sequence number n, with len data
  775.   characters pointed to by d, in either a regular or extended- length packet,
  776.   depending on len.  Returns the number of bytes actually sent, or else -1
  777.   upon failure.  Uses global npad, padch, mystch, bctu, data.  Leaves packet 
  778.   fully built and null-terminated for later retransmission by resend().
  779.   Updates global sndpktl (send-packet length).
  780.  
  781.   NOTE: The global pointer "data" is assumed to point into the 7th position
  782.   of a character array (presumably in packet buffer for the current packet).
  783.   It was used by getpkt() to build the packet data field.  spack() fills in
  784.   the header to the left of the data pointer (the data pointer is defined
  785.   in getsbuf() in ckcfn3.c).  If the address "d" is the same as "data", then
  786.   the packet's data field has been built "in place" and need not be copied.
  787. */
  788. int
  789. #ifdef CK_ANSIC
  790. spack(char pkttyp, int n, int len, CHAR *d)
  791. #else
  792. spack(pkttyp,n,len,d) char pkttyp; int n, len; CHAR *d;
  793. #endif /* CK_ANSIC */
  794. /* spack */ {
  795.     register int i;
  796.     int j, k, lp, longpkt, copy;
  797.     register CHAR *cp, *mydata;
  798.     unsigned crc;
  799.  
  800.     debug(F101,"spack n","",n);
  801.     debug(F111," data",data,data);
  802.     debug(F101," d","",d);
  803.     debug(F101," len","",len);
  804.  
  805.     copy = (d != data);            /* Flag whether data must be copied  */
  806.     longpkt = (len + bctl + 2) > 94;    /* Decide whether it's a long packet */
  807.     mydata = data - 7 + (longpkt ? 0 : 3); /* Starting position of header */
  808.     debug(F101," mydata","",mydata);
  809.  
  810.     k = sseqtbl[n];            /* Packet structure info for pkt n */ 
  811.     debug(F101," sseqtbl[n]","",k);
  812.     if (k < 0) {
  813.     debug(F101,"spack sending packet out of window","",n);
  814.     } else {                /* Record packet info */
  815.     s_pkt[k].pk_adr = mydata;    /* Remember address of packet. */
  816.     s_pkt[k].pk_seq = n;        /* Record sequence number */
  817.     s_pkt[k].pk_typ = pkttyp;    /* Record packet type */
  818.     }
  819.  
  820.     spktl = 0;                /* Initialize length of this packet */
  821.     i = 0;                /* and position in packet. */
  822.  
  823. /* Now fill the packet */
  824.  
  825.     mydata[i++] = mystch;        /* MARK */
  826.     lp = i++;                /* Position of LEN, fill in later */
  827.  
  828.     mydata[i++] = tochar(n);        /* SEQ field */
  829.     mydata[i++] = pkttyp;        /* TYPE field */
  830.     j = len + bctl;            /* Length of data + block check */
  831.     if (longpkt) {            /* Long packet? */
  832.     int x;                /* Work around SCO Xenix/286 */
  833.     x = j / 95;            /* compiler bug... */
  834.         mydata[lp] = tochar(0);        /* Yes, set LEN to zero */
  835.         mydata[i++] = tochar(x);    /* High part */
  836.         mydata[i++] = tochar(j % 95);    /* Low part */
  837.         mydata[i] = '\0';        /* Header checksum */
  838.         mydata[i++] = tochar(chk1(mydata+lp));
  839.     } else mydata[lp] = tochar(j+2);    /* Normal LEN */
  840.  
  841.     if (copy)                /* Data field built in place? */
  842.       for ( ; len--; i++) mydata[i] = *d++; /* No, must copy. */
  843.     else                /* Otherwise, */
  844.       i += len;                /* Just skip past data field. */
  845.     mydata[i] = '\0';            /* Null-terminate for checksum calc. */
  846.  
  847.     switch (bctu) {            /* Block check */
  848.     case 1:                /* 1 = 6-bit chksum */
  849.         mydata[i++] = tochar(chk1(mydata+lp));
  850.         break;
  851.     case 2:                /* 2 = 12-bit chksum */
  852.         j = chk2(mydata+lp);
  853.         mydata[i++] = (unsigned)tochar((j >> 6) & 077);
  854.            mydata[i++] = (unsigned)tochar(j & 077);
  855.         break;
  856.         case 3:                /* 3 = 16-bit CRC */
  857.         crc = chk3(mydata+lp);
  858.         mydata[i++] = (unsigned)tochar(((crc & 0170000)) >> 12);
  859.         mydata[i++] = (unsigned)tochar((crc >> 6) & 077);
  860.         mydata[i++] = (unsigned)tochar(crc & 077);
  861.         break;
  862.     case 4:                /* 2 = 12-bit chksum, blank-free */
  863.         j = chk2(mydata+lp);    
  864.         mydata[i++] =
  865.           (unsigned)(tochar((unsigned)(((j >> 6) & 077) + 1)));
  866.            mydata[i++] = (unsigned)(tochar((unsigned)((j & 077) + 1)));
  867.         break;
  868.     }
  869.     mydata[i++] = seol;            /* End of line (packet terminator) */
  870. #ifdef TCPSOCKET
  871. /*
  872.   If TELNET connection and packet terminator is carriage return,
  873.   we must stuff either LF or NUL, according to SET TELNET NEWLINE-MODE
  874.   (tn_nlm), to meet the TELNET specification, unless user said RAW.
  875. */
  876.     if (network && ttnproto == NP_TELNET && seol == CR && tn_nlm != TNL_CR)
  877.       mydata[i++] = (tn_nlm == TNL_CRLF) ? LF : NUL;
  878. #endif /* TCPSOCKET */
  879.     mydata[i] = '\0';            /* Terminate string */
  880.     logpkt('s',n,mydata);        /* Log packet */
  881.  
  882.     /* (PWP) add the parity quickly at the end */
  883.     switch (parity) {
  884.       case 'e':                /* Even */
  885.     for (cp = &mydata[i-1]; cp >= mydata; cp--)
  886.       *cp = p_tbl[*cp];
  887.     break;
  888.       case 'm':                /* Mark */
  889.     for (cp = &mydata[i-1]; cp >= mydata; cp--)
  890.       *cp |= 128;
  891.     break;
  892.       case 'o':                /* Odd */
  893.     for (cp = &mydata[i-1]; cp >= mydata; cp--)
  894.       *cp = p_tbl[*cp] ^ 128;
  895.     break;
  896.       case 's':                /* Space */
  897.     for (cp = &mydata[i-1]; cp >= mydata; cp--)
  898.       *cp &= 127;
  899.     break;
  900.     }
  901.     if (pktpaus) msleep(pktpaus);    /* Pause if requested */
  902.     if (npad) ttol(padbuf,npad);    /* Send any padding */
  903.     spktl = i;                /* Remember packet length */
  904.     s_pkt[k].pk_len = spktl;        /* also in packet info structure */
  905.     if (ttol(mydata,spktl) < 0) return(-1); /* Send the packet */
  906.     sndtyp = pkttyp;            /* Remember packet type for echos */
  907.     spackets++;                /* Count it. */
  908.     flco += spktl;            /* Count the characters */
  909.     tlco += spktl;            /* for statistics... */
  910.     dumpsbuf();                /* Dump send buffers to debug log */
  911.     debug(F100,"spack about to call screen","",0);
  912.     debug(F111," with mydata=",mydata,n);
  913.     screen(SCR_PT,pkttyp,(long)n,(char *)mydata); /* Update screen */
  914.     return(spktl);            /* Return length */
  915. }
  916.  
  917. /*  C H K 1  --  Compute a type-1 Kermit 6-bit checksum.  */
  918.  
  919. int
  920. chk1(pkt) register CHAR *pkt; {
  921.     register unsigned int chk;
  922.     chk = chk2(pkt);
  923.     chk = (((chk & 0300) >> 6) + chk) & 077;
  924.     return((int) chk);
  925. }
  926.  
  927. /*  C H K 2  --  Compute the numeric sum of all the bytes in the packet.  */
  928.  
  929. unsigned int
  930. chk2(pkt) register CHAR *pkt; {
  931.     register long chk; register unsigned int m;
  932.     m = (parity) ? 0177 : 0377;
  933.     for (chk = 0; *pkt != '\0'; pkt++)
  934.       chk += *pkt & m;
  935.     return((unsigned int) (chk & 07777));
  936. }
  937.  
  938.  
  939. /*  C H K 3  --  Compute a type-3 Kermit block check.  */
  940. /*
  941.  Calculate the 16-bit CRC-CCITT of a null-terminated string using a lookup 
  942.  table.  Assumes the argument string contains no embedded nulls.
  943. */
  944. unsigned int
  945. chk3(pkt) register CHAR *pkt; {
  946.     register long c, crc;
  947.     register unsigned int m;
  948.     m = (parity) ? 0177 : 0377;
  949.     for (crc = 0; *pkt != '\0'; pkt++) {
  950.     c = crc ^ (long)(*pkt & m);
  951.     crc = (crc >> 8) ^ (crcta[(c & 0xF0) >> 4] ^ crctb[c & 0x0F]);
  952.     }
  953.     return((unsigned int) (crc & 0xFFFF));
  954. }
  955.  
  956. int
  957. nxtpkt() {                /* Called by file sender */
  958.     int j, n;
  959.  
  960.     debug(F101,"nxtpkt pktnum","",pktnum);
  961.     debug(F101,"nxtpkt winlo ","",winlo);
  962.     n = (pktnum + 1) % 64;        /* Increment packet number mod 64 */
  963. #ifdef COMMENT 
  964. /*
  965.   Suggested by Alan Grieg.  A packet can be sent out of window in 
  966.   circumstances involving acks received out of order, ...  Have to think
  967.   about this...
  968. */
  969.     if (chkwin(n,winlo,wslots)) {
  970.     debug(F101,"nxtpkt n not in window","",n);
  971.     return(-1);
  972.     }
  973. #endif
  974.     j = getsbuf(n);            /* Get a buffer for packet n */
  975.     if (j < 0) {
  976.     debug(F101,"nxtpkt can't getsbuf","",j);
  977.     return(-1);
  978.     }
  979.     pktnum = n;          
  980.     debug(F101,"nxtpkt bumped pktnum to","",pktnum);
  981.     return(0);
  982. }
  983.  
  984. /* Functions for sending ACKs and NAKs */
  985.  
  986. /* Note, we should only ACK the packet at window-low (winlo) */
  987. /* However, if an old packet arrives again (e.g. because the ACK we sent */
  988. /* earlier was lost), we ACK it again. */
  989.  
  990. int
  991. ack() {                    /* Acknowledge the current packet. */
  992.     return(ackns(winlo,(CHAR *)""));
  993. }
  994.  
  995. int
  996. ackns(n,s) int n; CHAR *s; {        /* Acknowledge packet n */
  997.     int j, k;
  998.     debug(F111,"ackns",s,n);
  999.  
  1000.     k = rseqtbl[n];            /* First find received packet n. */
  1001.     debug(F101,"ackns k","",k);
  1002. #ifdef COMMENT
  1003. /* No need to set ACK'd bit, because we're gonna free the buffer now */
  1004.     if (k > -1)                /* If in window */
  1005.       s_pkt[k].pk_flg++;        /* mark the ack'd bit. */
  1006.     else
  1007.       debug(F101,"ackns can't set ack'd bit","",k);
  1008. #endif
  1009.     freesbuf(n);            /* Free current send-buffer, if any */
  1010.     if ((j = getsbuf(n)) < 0) {
  1011.     /* This can happen if we have to re-ACK an old packet that has */
  1012.         /* already left the window.  It does no harm. */
  1013.     debug(F101,"ackns can't getsbuf","",n);
  1014.     }
  1015.     spack('Y',n,(int)strlen((char *)s),s); /* Now send it. */
  1016.     debug(F101,"ackns winlo","",winlo);
  1017.     debug(F101,"ackns n","",n);
  1018.     if (n == winlo) {            /* If we're acking winlo */
  1019.     if (k > -1)
  1020.       freerbuf(k);            /* don't need it any more */
  1021.     if (j > -1)
  1022.       freesbuf(j);            /* and don't need to keep ACK either */
  1023.     winlo = (winlo + 1) % 64;
  1024.     }
  1025.     return(0);
  1026. }
  1027.  
  1028. int
  1029. ackn(n) int n; {            /* Send ACK for packet number n */
  1030.     return(ackns(n,(CHAR *)""));
  1031. }
  1032.  
  1033. int
  1034. ack1(s) CHAR *s; {            /* Send an ACK with data. */
  1035.     debug(F110,"ack1",(char *) s,0);
  1036.     return(ackns(winlo, s));
  1037. }
  1038.  
  1039. /* N A C K  --   Send a Negative ACKnowledgment. */
  1040. /*
  1041.  Call with the packet number, n, to be NAK'd.
  1042.  Returns -1 if that packet has been NAK'd too many times, otherwise 0.
  1043.  Btw, it is not right to return 0 under error conditions.  This is
  1044.  done because the -1 code is used for cancelling the file transfer.
  1045.  More work is needed here.
  1046. */
  1047. int
  1048. nack(n) int n; {
  1049.     int i;
  1050.  
  1051.     if (n < 0 || n > 63) {
  1052.     debug(F101,"nack bad pkt num","",n);
  1053.     return(0);
  1054.     } else debug(F101,"nack","",n);
  1055.     if ((i = sseqtbl[n]) < 0) {        /* If necessary */
  1056.     if (getsbuf(n) < 0) {        /* get a buffer for this NAK */
  1057.         debug(F101,"nack can't getsbuf","",n);
  1058.         return(0);
  1059.     } else i = sseqtbl[n];        /* New slot number */
  1060.     }
  1061.     if (s_pkt[i].pk_rtr++ > maxtry)    /* How many times have we done this? */
  1062.       return(-1);            /* Too many... */
  1063.  
  1064. /* Note, don't free this buffer.  Eventually an ACK will come, and that */
  1065. /* will set it free.  If not, well, it's back to ground zero anyway...  */
  1066.  
  1067.     spack('N',n,0,(CHAR *) "");        /* NAKs never have data. */
  1068.     return(0);
  1069. }
  1070.  
  1071. /*
  1072.  * (PWP) recalculate the optimal packet length in the face of errors.
  1073.  * This is a modified version of the algorithm by John Chandler in Kermit/370, 
  1074.  * see "Dynamic Packet Size Control", Kermit News, V2 #1, June 1988.
  1075.  *
  1076.  * This implementation minimizes the total overhead equation, which is
  1077.  *
  1078.  *   Total chars = file_chars + (header_len * num_packs)
  1079.  *                            + (errors * (header_len + packet_len))
  1080.  *
  1081.  * Differentiate with respect to number of chars, solve for packet_len, get:
  1082.  *
  1083.  *   packet_len = sqrt (file_chars * header_len / errors)
  1084.  */
  1085.  
  1086. /*
  1087.  (FDC) New super-simple algorithm.  If there was an error in the most recent
  1088.  packet exchange, cut the send-packet size in half, down to a minimum of 20.
  1089.  If there was no error, increase the size by 5/4, up to the maximum negotiated
  1090.  length.  Seems to be much more responsive than previous algorithm, which took
  1091.  forever to recover the original packet length, and it also went crazy under
  1092.  certain conditions.
  1093.  
  1094.  Here's another idea for packet length resizing that keeps a history of the
  1095.  last n packets.  Push a 1 into the left end of an n-bit shift register if the
  1096.  current packet is good, otherwise push a zero.  The current n-bit value, w, of
  1097.  this register is a weighted sum of the noise hits for the last n packets, with
  1098.  the most recent weighing the most.  The current packet length is some function
  1099.  of w and the negotiated packet length, like:
  1100.  
  1101.    (2^n - w) / (2^n) * (negotiated length)
  1102.  
  1103.  If the present resizing method causes problems, think about this one a little
  1104.  more.
  1105. */
  1106. VOID
  1107. rcalcpsz() {
  1108.  
  1109. #ifdef COMMENT
  1110. /* Old way */
  1111.     register long x, q;
  1112.     if (numerrs == 0) return;    /* bounds check just in case */
  1113.  
  1114.     /* overhead on a data packet is npad+5+bctr, plus 3 if extended packet */
  1115.     /* an ACK is 5+bctr */
  1116.  
  1117.     /* first set x = per packet overhead */
  1118.     if (wslots > 1)
  1119.     x = (long) (npad+5+bctr);    /* only the packet, don't count the ack */
  1120.     else
  1121.     x = (long) (npad+5+3+bctr+5+bctr);
  1122.  
  1123.     /* then set x = packet length ** 2 */
  1124.     x = x * ( ffc / (long) numerrs);    /* careful of overflow */
  1125.     
  1126.     /* calculate the long integer sqrt(x) quickly */
  1127.     q = 500;
  1128.     q = (q + x/q) >> 1;
  1129.     q = (q + x/q) >> 1;
  1130.     q = (q + x/q) >> 1;
  1131.     q = (q + x/q) >> 1;        /* should converge in about 4 steps */
  1132.     if ((q > 94) && (q < 130))    /* break-even point for long packets */
  1133.     q = 94;
  1134.     if (q > spmax) q = spmax;    /* maximum bounds */
  1135.     if (q < 10) q = 10;        /* minimum bounds */
  1136.     spsiz = q;            /* set new send packet size */
  1137.     debug(F101,"rcalcpsiz","",q);
  1138. #else
  1139. /* New way */
  1140.     if (spackets < 3) return;
  1141.     debug(F101,"rcalcpsiz numerrs","",numerrs);
  1142.     debug(F101,"rcalcpsiz spsiz","",spsiz);
  1143.     if (numerrs)
  1144.       spsiz = spsiz / 2;
  1145.     else
  1146.       spsiz = (spsiz / 4) * 5;
  1147.     if (spsiz < 20) spsiz = 20;
  1148.     if (spsiz > spmax) spsiz = spmax;
  1149.     debug(F101,"rcalcpsiz new spsiz","",spsiz);
  1150.     numerrs = 0;
  1151.     return;
  1152. #endif
  1153. }
  1154.  
  1155. /*  R E S E N D  --  Retransmit packet n.  */
  1156.  
  1157. /*
  1158.   Returns 0 or positive on success (the number of retries for packet n).
  1159.   On failure, returns a negative number, and an error message is placed
  1160.   in recpkt.
  1161. */
  1162. int
  1163. resend(n) int n; {            /* Send packet n again. */
  1164.     int j, k;
  1165.  
  1166.     debug(F101,"resend seq","",n);
  1167.  
  1168.     k = chkwin(n,winlo,wslots);        /* See if packet in current window */
  1169.     j = -1;                /* Assume it's lost */
  1170.     if (k == 0) j = sseqtbl[n];        /* See if we still have a copy of it */
  1171.     if (k != 0 || j < 0) {        /* If not.... */
  1172.     if (nakstate && k == 1) {
  1173. /*
  1174.   Packet n is in the previous window and we are the file receiver.
  1175.   We already sent the ACK and deallocated its buffer so we can't just 
  1176.   retransmit the ACK.  Rather than give up, we try some tricks...
  1177. */
  1178.         if (n == 0 && spackets < 63 && myinit[0]) { /* ACK to Send-Init */
  1179. /*
  1180.   If the packet number is 0, and we're at the beginning of a protocol
  1181.   operation (spackets < 63), then we have to resend the ACK to an I or S
  1182.   packet, complete with parameters in the data field.  So we take a chance and
  1183.   send a copy of the parameters in an ACK packet with block check type 1.
  1184. */
  1185.         int bctlsav;        /* Temporary storage */
  1186.         int bctusav;
  1187.         bctlsav = bctl;        /* Save current block check length */
  1188.         bctusav = bctu;        /* and type */
  1189.         bctu = bctl = 1;    /* Set block check to 1 */
  1190.         spack('Y',0,(int)strlen((char *)myinit),(CHAR *)myinit);
  1191.         logpkt('#',n,(CHAR *)"<reconstructed>"); /* Log it */
  1192.         bctu = bctusav;        /* Restore block check type */
  1193.         bctl = bctlsav;        /* and length */
  1194.  
  1195.         } else {            /* Not the first packet */
  1196. /*
  1197.   It's not the first packet of the protocol operation.  It's some other packet
  1198.   that we have already ACK'd and forgotten about.  So we take a chance and
  1199.   send an empty ACK using the current block-check type.  Usually this will
  1200.   work out OK (like when acking Data packets), and no great harm will be done
  1201.   if it was some other kind of packet (F, etc).  If we are requesting an
  1202.   interruption of the file transfer, the flags are still set, so we'll catch
  1203.   up on the next packet.
  1204. */
  1205.         spack('Y',n,0,(CHAR *) "");
  1206.         }
  1207.         retrans++;
  1208.         screen(SCR_PT,'%',(long)pktnum,"(resend)");
  1209.         return(0);
  1210.     } else {
  1211. /*
  1212.   Packet number is not in current or previous window.  We seem to hit this
  1213.   code occasionally at the beginning of a transaction, for apparently no good
  1214.   reason.  Let's just log it for debugging, send nothing, and try to proceed
  1215.   with the protocol rather than killing it.
  1216. */
  1217.         debug(F101,"RESEND PKT NOT IN WINDOW","",n);
  1218.         debug(F101,"RESEND k","",k);
  1219. #ifdef COMMENT
  1220.         sprintf((char *)pktmsg,
  1221.             "   resend error: NIW, n=%d, k=%d.",n,k);
  1222.         return(-2);
  1223. #else
  1224.         return(0);
  1225. #endif /* COMMENT */
  1226.     }
  1227.     }
  1228.  
  1229. /* OK, it's in the window and it's not lost. */
  1230.  
  1231.     debug(F101,"resend pktinfo index","",k);
  1232.  
  1233.     if (s_pkt[j].pk_rtr++ > maxtry) {    /* Found it but over retry limit */
  1234.     strcpy((char *)pktmsg,"Too many retries.");
  1235.     return(-1);
  1236.     }
  1237.     debug(F101," retry","",s_pkt[j].pk_rtr); /* OK so far */
  1238.     dumpsbuf();                /* (debugging) */
  1239.     if (s_pkt[j].pk_typ == ' ') {    /* Incompletely formed packet */
  1240.     if (nakstate) {            /* (This shouldn't happen any more) */
  1241.         nack(n);
  1242.         retrans++;
  1243.         screen(SCR_PT,'%',(long)pktnum,"(resend)");
  1244.         return(s_pkt[j].pk_rtr);
  1245.     } else {            /* No packet to resend! */
  1246. #ifdef COMMENT
  1247. /*
  1248.   This happened (once) while sending a file with 2 window slots and typing
  1249.   X to the sender to cancel the file.  But since we're cancelling anyway,
  1250.   there's no need to give a scary message.
  1251. */
  1252.         sprintf((char *)pktmsg,
  1253.             "resend logic error: NPS, n=%d, j=%d.",n,j); 
  1254.         return(-2);
  1255. #else
  1256. /* Just ignore it. */
  1257.         return(0);
  1258. #endif /* COMMENT */
  1259.     }
  1260.     }
  1261.     ttol(s_pkt[j].pk_adr,s_pkt[j].pk_len); /* Everything ok, send the packet */
  1262.     retrans++;                /* Count a retransmission */
  1263.     screen(SCR_PT,'%',(long)pktnum,"(resend)");    /* Tell user about resend */
  1264.     logpkt('S',n,s_pkt[j].pk_adr);    /* Log the resent packet */
  1265.     return(s_pkt[j].pk_rtr);        /* Return the number of retries. */
  1266. }
  1267.  
  1268. int
  1269. errpkt(reason) CHAR *reason; {        /* Send an error packet. */
  1270.     int x, y;
  1271.     encstr(reason);
  1272.     y = spack('E',pktnum,size,data);
  1273.     x = quiet; quiet = 1;         /* Close files silently. */
  1274.     clsif(); clsof(1);
  1275.     quiet = x;
  1276. #ifdef COMMENT
  1277.     screen(SCR_TC,0,0l,"");
  1278. #endif /* COMMENT */
  1279.     if (what < W_CONNECT)
  1280.       xitsta |= what;            /* Remember what failed. */
  1281.     success = 0;
  1282.     return(y);
  1283. }
  1284.  
  1285. /* scmd()  --  Send a packet of the given type */
  1286.  
  1287. int
  1288. #ifdef CK_ANSIC
  1289. scmd(char t, CHAR *dat)
  1290. #else
  1291. scmd(t,dat) char t; CHAR *dat;
  1292. #endif /* CK_ANSIC */
  1293. /* scmd */ {
  1294.     if (encstr(dat) < 0)        /* Encode the command string */
  1295.       return(-1);
  1296.     spack(t,pktnum,size,data);
  1297.     return(0);
  1298. }
  1299.  
  1300. int
  1301. srinit() {                /* Send R (GET) packet */
  1302.     if (encstr((CHAR *)cmarg) < 0)    /* Encode the filename. */
  1303.       return(-1);
  1304.     spack('R',pktnum,size,data);    /* Send the packet. */
  1305.     return(0);
  1306. }
  1307.  
  1308. /* R P A C K  --  Read a Packet */
  1309.  
  1310. /*
  1311.  rpack reads a packet and returns the packet type, or else Q if the
  1312.  packet was invalid, or T if a timeout occurred.  Upon successful return, sets
  1313.  the values of global rsn (received sequence number),  rln (received
  1314.  data length), and rdatap (pointer to null-terminated data field).
  1315. */
  1316. int
  1317. rpack() {
  1318.     register int i, j, x, lp;        /* Local variables */
  1319.     int k, type, chklen;
  1320.     unsigned crc;
  1321.     CHAR pbc[4];            /* Packet block check */
  1322.     CHAR *sohp;                /* Pointer to SOH */
  1323.     CHAR e;                /* Packet end character */
  1324.  
  1325.     debug(F101,"entering rpack, pktnum","",pktnum);
  1326.     k = getrbuf();            /* Get a new packet input buffer. */
  1327.     debug(F101,"rpack getrbuf","",k);
  1328.     if (k < 0) return(-1);        /* Return like this if none free. */
  1329.     if (pktmsg) *pktmsg = NUL;
  1330.     recpkt = r_pkt[k].bf_adr;
  1331.     *recpkt = '\0';            /* Clear receive buffer. */
  1332.     sohp = recpkt;            /* Initialize pointers to it. */
  1333.     rdatap = recpkt;
  1334.     rsn = rln = -1;            /* In case of failure. */
  1335.     e = (turn) ? turnch : eol;        /* Use any handshake char for eol */
  1336.  
  1337. /* Try to get a "line". */
  1338.  
  1339. #ifdef PARSENSE
  1340. #ifdef UNIX
  1341. /*
  1342.   So far the final turn argument is only for ck[uvdl]tio.c.  Should be added
  1343.   to the others too.  (turn == handshake character.)
  1344. */
  1345.     j = ttinl(recpkt,r_pkt[k].bf_len - 1,timint,e,stchr,turn);
  1346. #else
  1347. #ifdef VMS
  1348.     j = ttinl(recpkt,r_pkt[k].bf_len - 1,timint,e,stchr,turn);
  1349. #else
  1350. #ifdef datageneral
  1351.     j = ttinl(recpkt,r_pkt[k].bf_len - 1,timint,e,stchr,turn);
  1352. #else
  1353. #ifdef STRATUS
  1354.     j = ttinl(recpkt,r_pkt[k].bf_len - 1,timint,e,stchr,turn);
  1355. #else
  1356. #ifdef OS2
  1357.     j = ttinl(recpkt,r_pkt[k].bf_len - 1,timint,e,stchr,turn);
  1358. #else
  1359.     j = ttinl(recpkt,r_pkt[k].bf_len - 1,timint,e,stchr);
  1360. #endif /* OS2 */
  1361. #endif /* STRATUS */
  1362. #endif /* datageneral */
  1363. #endif /* VMS */
  1364. #endif /* UNIX */
  1365.     if (parity != ttprty) autopar = 1;
  1366.     parity = ttprty; 
  1367. #else /* !PARSENSE */
  1368.     j = ttinl(recpkt,r_pkt[k].bf_len - 1,timint,e);
  1369. #endif /* PARSENSE */
  1370.     if (j < 0) {
  1371.     debug(F101,"rpack: ttinl fails","",j); /* Otherwise, */
  1372.     freerbuf(k);            /* Free this buffer */
  1373.     if (j < -1) {            /* Bail out if ^C^C typed. */
  1374.         debug(F101,"rpack ^C server","",server);
  1375.         debug(F101,"rpack ^C en_fin","",en_fin);
  1376.         if (server == 0) return(j);    /* But not if in server mode */
  1377.         else if (en_fin) return(j);    /* with DISABLE FINISH */
  1378.     }
  1379.     if (nakstate)            /* Call it a timeout. */
  1380.       screen(SCR_PT,'T',(long)winlo,"");
  1381.     else
  1382.       screen(SCR_PT,'T',(long)pktnum,"");
  1383.     logpkt('r',-1,(CHAR *)"<timeout>");
  1384.     if (flow == 1) ttoc(XON);    /* In case of Xoff blockage. */
  1385.     return('T');
  1386.     }
  1387.     rpktl = j;
  1388.     tlci += j;                /* All OK, Count the characters. */
  1389.     flci += j;
  1390.  
  1391. #ifndef PARSENSE
  1392. /* THEN eliminate this loop... */
  1393.     for (i = 0; (recpkt[i] != stchr) && (i < j); i++)
  1394.       sohp++;                /* Find mark */
  1395.     if (i++ >= j) {            /* Didn't find it. */
  1396.     logpkt('r',-1,"<timeout>");
  1397.     freerbuf(k);
  1398.     return('T');
  1399.     }    
  1400. #else
  1401.     i = 1;
  1402. #endif /* PARSENSE */
  1403.  
  1404.     rpackets++;
  1405.     lp = i;                /* Remember LEN position. */
  1406.     if ((j = xunchar(recpkt[i++])) == 0) {
  1407.         if ((j = lp+5) > MAXRP) return('Q'); /* Long packet */
  1408.     x = recpkt[j];            /* Header checksum. */
  1409.     recpkt[j] = '\0';        /* Calculate & compare. */
  1410.     if (xunchar(x) != chk1(recpkt+lp)) {
  1411.         freerbuf(k);
  1412.         logpkt('r',-1,(CHAR *)"<crunched:hdr>");
  1413.         return('Q');
  1414.     }
  1415.     recpkt[j] = x;            /* Checksum ok, put it back. */
  1416.     rln = xunchar(recpkt[j-2]) * 95 + xunchar(recpkt[j-1]) - bctl;
  1417.     j = 3;                /* Data offset. */
  1418.     } else if (j < 3) {
  1419.     debug(F101,"rpack packet length less than 3","",j);
  1420.     freerbuf(k);
  1421.     logpkt('r',-1,(CHAR *)"<crunched:len>");
  1422.     return('Q');
  1423.     } else {
  1424.     rln = j - bctl - 2;        /* Regular packet */
  1425.     j = 0;                /* No extended header */
  1426.     }
  1427.     rsn = xunchar(recpkt[i++]);        /* Sequence number */
  1428.     logpkt('r',rsn,sohp);
  1429.     if (rsn < 0 || rsn > 63) {
  1430.     debug(F101,"rpack bad sequence number","",rsn);
  1431.     freerbuf(k);
  1432.     logpkt('r',rsn,(CHAR *)"<crunched:seq>");
  1433.     return('Q');
  1434.     }
  1435. /*
  1436.   If this packet has the same type as the packet just sent, assume it is
  1437.   an echo and ignore it.  Don't even bother with the block check calculation:
  1438.   even if the packet is corrupted, we don't want to NAK an echoed packet.
  1439.   (And we certainly don't want to NAK an ACK or NAK!)
  1440. */
  1441.     type = recpkt[i++];            /* Get packet's TYPE field */
  1442.     if (type == sndtyp || (nakstate && (type == 'N' /* || type == 'Y' */ ))) {
  1443.     debug(F000,"rpack echo","",type); /* If it's an echo */
  1444.     freerbuf(k);            /* Free this buffer */
  1445.     logpkt('#',rsn,(CHAR *)"<echo:ignored>");
  1446.     return('e');            /* return special (lowercase) code */
  1447.     }
  1448. /*
  1449.   Separate the data from the block check, accounting for the case where    
  1450.   a packet was retransmitted after the block check switched.
  1451. */
  1452.     if (type == 'I' || type == 'S') {    /* I & S packets always have type 1 */
  1453.     chklen = 1;
  1454.     rln = rln + bctl - 1;
  1455.     } else if (type == 'N') {        /* A NAK packet never has data */
  1456.     chklen = xunchar(recpkt[lp]) - 2;
  1457.     rln = rln + bctl - chklen;
  1458.     } else chklen = bctl;
  1459.     debug(F101,"rpack bctl","",bctl);
  1460.     debug(F101,"rpack chklen","",chklen);
  1461.  
  1462.     i += j;                /* Buffer index of DATA field */
  1463.     rdatap = recpkt+i;            /* Pointer to DATA field */
  1464.     if ((j = rln + i) > r_pkt[k].bf_len ) { /* Make sure it fits */
  1465.     debug(F101,"packet sticks out too far","",j);
  1466.     freerbuf(k);
  1467.     logpkt('r',rsn,(CHAR *)"<overflow>");
  1468.     return('Q');
  1469.     }
  1470.  
  1471.     for (x = 0; x < chklen; x++)    /* Copy the block check */
  1472.       pbc[x] = recpkt[j+x];
  1473.     pbc[x] = '\0';            /* Null-terminate block check string */
  1474.     recpkt[j] = '\0';            /*  and the packet DATA field. */
  1475.     
  1476.     if (chklen == 2 && bctu == 4) {    /* Adjust for Blank-Free-2 */
  1477.     chklen = 4;            /* (chklen is now a misnomer...) */
  1478.     debug(F100,"rpack block check B","",0);
  1479.     }
  1480.     switch (chklen) {            /* Check the block check */
  1481.     case 1:                /* Type 1, 6-bit checksum */
  1482.         if (xunchar(*pbc) != chk1(recpkt+lp)) {
  1483.         debug(F110,"checked chars",recpkt+lp,0);
  1484.             debug(F101,"block check","",(int) xunchar(*pbc));
  1485.         debug(F101,"should be","",chk1(recpkt+lp));
  1486.         freerbuf(k);
  1487.         logpkt('r',-1,(CHAR *)"<crunched:chk1>");
  1488.         return('Q');
  1489.          }
  1490.         break;
  1491.     case 2:                /* Type 2, 12-bit checksum */
  1492.         x = xunchar(*pbc) << 6 | xunchar(pbc[1]);
  1493.         if (x != chk2(recpkt+lp)) {    /* No match */
  1494.         if (type == 'E') {    /* Allow E packets to have type 1 */
  1495.             recpkt[j++] = pbc[0];    
  1496.             recpkt[j] = '\0';
  1497.             if (xunchar(pbc[1]) == chk1(recpkt+lp))
  1498.               break;
  1499.             else
  1500.               recpkt[--j] = '\0';
  1501.         }
  1502.         debug(F110,"checked chars",recpkt+lp,0);
  1503.             debug(F101,"block check","", x);
  1504.         debug(F101,"should be","", (int) chk2(recpkt+lp));
  1505.         freerbuf(k);
  1506.         logpkt('r',-1,(CHAR *)"<crunched:chk2>");
  1507.         return('Q');
  1508.         }
  1509.         break;
  1510.     case 3:                /* Type 3, 16-bit CRC */
  1511.         crc = (xunchar(pbc[0]) << 12)
  1512.             | (xunchar(pbc[1]) << 6)
  1513.         | (xunchar(pbc[2]));
  1514.         if (crc != chk3(recpkt+lp)) {
  1515.         if (type == 'E') {    /* Allow E packets to have type 1 */
  1516.             recpkt[j++] = pbc[0];    
  1517.             recpkt[j++] = pbc[1];
  1518.             recpkt[j] = '\0';
  1519.             if (xunchar(pbc[2]) == chk1(recpkt+lp))
  1520.               break;
  1521.             else { j -=2; recpkt[j] = '\0'; }
  1522.         }
  1523.         debug(F110,"checked chars",recpkt+lp,0);
  1524.             debug(F101,"block check","",xunchar(*pbc));
  1525.         debug(F101,"should be","",(int) chk3(recpkt+lp));
  1526.         freerbuf(k);
  1527.         logpkt('r',-1,(CHAR *)"<crunched:chk3>");
  1528.         return('Q');
  1529.         }
  1530.         break;
  1531.     case 4:                /* Type 4 = Type 2, no blanks. */
  1532.         x = (unsigned)((xunchar(*pbc) - 1) << 6) |
  1533.             (unsigned)(xunchar(pbc[1]) - 1);
  1534.         if (x != chk2(recpkt+lp)) {
  1535.         if (type == 'E') {    /* Allow E packets to have type 1 */
  1536.             recpkt[j++] = pbc[0];    
  1537.             recpkt[j] = '\0';
  1538.             if (xunchar(pbc[1]) == chk1(recpkt+lp))
  1539.               break;
  1540.             else
  1541.               recpkt[--j] = '\0';
  1542.         }
  1543.         debug(F101,"bad type B block check","",x);
  1544.         freerbuf(k);
  1545.         logpkt('r',-1,(CHAR *)"<crunched:chkb>");
  1546.         return('Q');
  1547.         }
  1548.         break;
  1549.     default:            /* Shouldn't happen... */
  1550.         freerbuf(k);
  1551.         logpkt('r',-1,(CHAR *)"<crunched:chkx>");
  1552.         return('Q');
  1553.     }
  1554.     debug(F101,"rpack block check OK","",rsn);
  1555.  
  1556. /* Now we can believe the sequence number, and other fields. */
  1557. /* Here we violate strict principles of layering, etc, and look at the  */
  1558. /* packet sequence number.  If there's already a packet with the same   */
  1559. /* number in the window, we remove this one so that the window will not */
  1560. /* fill up. */
  1561.  
  1562.     if ((x = rseqtbl[rsn]) != -1) {    /* Already a packet with this number */
  1563.     retrans++;            /* Count it for statistics */
  1564.     debug(F101,"rpack got dup","",rsn);
  1565.     logpkt('r',rsn,(CHAR *)"<duplicate>");
  1566.     freerbuf(x);            /* Free old buffer, keep new packet. */
  1567.     r_pkt[k].pk_rtr++;        /* Count this as a retransmission. */
  1568.     }
  1569.  
  1570. /* New packet, not seen before, enter it into the receive window. */
  1571.  
  1572.     rseqtbl[rsn] = k;            /* Make back pointer */
  1573.     r_pkt[k].pk_seq = rsn;        /* Record in packet info structure */
  1574.     r_pkt[k].pk_typ = type;        /* Sequence, type,... */
  1575.     r_pkt[k].pk_adr = rdatap;        /* pointer to data buffer */
  1576.     screen(SCR_PT,(char)type,(long)rsn,(char *)sohp); /* Update screen */
  1577.     return(type);            /* Return packet type */
  1578. }
  1579.  
  1580. /*  L O G P K T  --  Log packet number n, pointed to by s.  */
  1581.  
  1582. /* c = 's' (send) or 'r' (receive) */
  1583.  
  1584. VOID
  1585. #ifdef CK_ANSIC
  1586. logpkt(char c,int n, CHAR *s)
  1587. #else
  1588. logpkt(c,n,s) char c; int n; CHAR *s;
  1589. #endif /* CK_ANSIC */
  1590. /* logpkt */ {
  1591.     char plog[20];
  1592.     if (pktlog && *s) {
  1593.     if (n < 0)
  1594.       sprintf(plog,"%c-xx-%02d-",c,(gtimer()%60));
  1595.     else
  1596.       sprintf(plog,"%c-%02d-%02d-",c,n,(gtimer()%60));
  1597.     if (zsout(ZPFILE,plog) < 0) pktlog = 0;
  1598.     else if (zsoutl(ZPFILE,(char *)s) < 0) pktlog = 0;
  1599.     }
  1600. }
  1601.  
  1602. #ifdef TLOG
  1603.  
  1604. /*  T S T A T S  --  Record statistics in transaction log  */
  1605.  
  1606. VOID
  1607. tstats() {
  1608.     char *tp;
  1609.     ztime(&tp);                /* Get time stamp */
  1610.     tlog(F100,"","",0L);        /* Leave a blank line */
  1611.     tlog(F110,"Transaction complete",tp,0L);  /* Record it */
  1612.  
  1613.     if (filcnt < 1) return;        /* If no files, done. */
  1614.  
  1615. /* If multiple files, record character totals for all files */
  1616.  
  1617.     if (filcnt > 1) {
  1618.     tlog(F101," files transferred       ","",filcnt - filrej);
  1619.     tlog(F101," total file characters   ","",tfc);
  1620.     tlog(F101," communication line in   ","",tlci);
  1621.     tlog(F101," communication line out  ","",tlco);
  1622.     }
  1623.  
  1624. /* Record timing info for one or more files */
  1625.  
  1626.     tlog(F101," elapsed time (seconds)  ","",(long) tsecs);
  1627.     if (tsecs > 0) {
  1628.     long lx;
  1629.     lx = (tfc * 10L) / (long) tsecs;
  1630.     tlog(F101," effective data rate     ","",lx/10L);
  1631.     if (speed <= 0L) speed = ttgspd();
  1632. #ifdef COMMENT
  1633.     if (speed > 0L && speed != 8880L && network == 0) {
  1634.         lx = (lx * 100L) / speed;
  1635.         tlog(F101," efficiency (percent)    ","",lx);
  1636.     }
  1637. #endif /* COMMENT */
  1638.     }
  1639.     tlog(F100,"","",0L);        /* Leave a blank line */
  1640. }
  1641.  
  1642. /*  F S T A T S  --  Record file statistics in transaction log  */
  1643.  
  1644. VOID
  1645. fstats() {
  1646.     tfc += ffc;
  1647.     if (!discard && !cxseen && !czseen) tlog(F101," complete, size","",ffc);
  1648. }
  1649. #else /* NOTLOG */
  1650. VOID
  1651. tstats() {}
  1652.  
  1653. VOID
  1654. fstats() {
  1655.     tfc += ffc;
  1656. }
  1657. #endif /* TLOG */
  1658.