Setting default ZIP for nodes not in the setup

This commit is contained in:
Michiel Broek 2006-03-17 19:56:49 +00:00
parent 93ad42ba02
commit de58423731
4 changed files with 19 additions and 8 deletions

View File

@ -3,6 +3,11 @@ $Id$
v0.83.16 13-Mar-2006 v0.83.16 13-Mar-2006
mbfido:
If sending crash to a node not in the setup, a default
archiver is now set to ZIP.
v0.83.15 05-Mar-2006 - 13-Mar-2006 v0.83.15 05-Mar-2006 - 13-Mar-2006
mbsebbs: mbsebbs:

View File

@ -107,7 +107,7 @@ void flush_dir(char *ndir)
if (!SearchNode(nodenr)) { if (!SearchNode(nodenr)) {
/* /*
* Node not known, blank noderecord and fill in some details * Node not in setup, blank noderecord and fill in some details
* so that we are able to send mail crash or immediate. * so that we are able to send mail crash or immediate.
*/ */
Syslog('+', "Node %s not in setup, using default settings", aka2str(nodenr)); Syslog('+', "Node %s not in setup, using default settings", aka2str(nodenr));
@ -116,6 +116,7 @@ void flush_dir(char *ndir)
nodes.Aka[0].net = noden.net; nodes.Aka[0].net = noden.net;
nodes.Aka[0].node = noden.node; nodes.Aka[0].node = noden.node;
nodes.Aka[0].point = noden.point; nodes.Aka[0].point = noden.point;
snprintf(nodes.Archiver, 6, (char *)"ZIP");
} }
/* /*

View File

@ -318,7 +318,7 @@ int io_mode(int fd, int n)
tty.c_iflag = IGNBRK; tty.c_iflag = IGNBRK;
if (n == 3) { /* with flow control */ if (n == 3) { /* with flow control */
tty.c_iflag |= IXOFF; /* Enable XON/XOFF flow control on input */ tty.c_iflag |= IXOFF; /* Enable XON/XOFF flow control on input */
// tty.c_cflag |= CRTSCTS; /* hardware flowcontrol */ tty.c_cflag |= CRTSCTS; /* hardware flowcontrol */
} }

View File

@ -132,7 +132,7 @@ int zmsndfiles(down_list *lst, int try8)
free(txbuf); free(txbuf);
txbuf = NULL; txbuf = NULL;
del_frame_buffer(); del_frame_buffer();
io_mode(0, 1); // io_mode(0, 1);
Syslog('z', "Zmodem: send rc=%d", maxrc); Syslog('z', "Zmodem: send rc=%d", maxrc);
return (maxrc < 2)?0:maxrc; return (maxrc < 2)?0:maxrc;
@ -144,7 +144,7 @@ static int initsend(void)
{ {
Syslog('z', "Zmodem: initsend"); Syslog('z', "Zmodem: initsend");
io_mode(0, 1); // io_mode(0, 1);
PUTSTR((char *)"rz\r"); PUTSTR((char *)"rz\r");
stohdr(0L); stohdr(0L);
zshhdr(ZRQINIT, Txhdr); zshhdr(ZRQINIT, Txhdr);
@ -259,6 +259,9 @@ int getzrxinit(void)
continue; continue;
case ZCOMMAND: /* They didn't see out ZRQINIT */ case ZCOMMAND: /* They didn't see out ZRQINIT */
/* A receiver cannot send a command */ /* A receiver cannot send a command */
Syslog('z', "getzrxinit got ZCOMMAND");
stohdr(0L);
zshhdr(ZACK, Txhdr);
continue; continue;
case ZRINIT: case ZRINIT:
Rxflags = 0377 & Rxhdr[ZF0]; Rxflags = 0377 & Rxhdr[ZF0];
@ -275,7 +278,7 @@ int getzrxinit(void)
if ( !(Rxflags & CANFDX)) if ( !(Rxflags & CANFDX))
Txwindow = 0; Txwindow = 0;
Syslog('z', "Zmodem: Remote allowed Rxbuflen=%d", Rxbuflen); Syslog('z', "Zmodem: Remote allowed Rxbuflen=%d", Rxbuflen);
io_mode(0, 2); /* Set cbreak, XON/XOFF, etc. */ // io_mode(0, 2); /* Set cbreak, XON/XOFF, etc. */
/* Set initial subpacket length */ /* Set initial subpacket length */
if (blklen < 1024) { /* Command line override? */ if (blklen < 1024) { /* Command line override? */
@ -333,6 +336,7 @@ int sendzsinit(void)
Txhdr[ZF0] |= TESCCTL; zshhdr(ZSINIT, Txhdr); Txhdr[ZF0] |= TESCCTL; zshhdr(ZSINIT, Txhdr);
} else } else
zsbhdr(ZSINIT, Txhdr); zsbhdr(ZSINIT, Txhdr);
Syslog('z', "sendzsinit Myattn \"%s\"", printable(Myattn, 0));
zsdata(Myattn, 1 + strlen(Myattn), ZCRCW); zsdata(Myattn, 1 + strlen(Myattn), ZCRCW);
c = zgethdr(Rxhdr); c = zgethdr(Rxhdr);
switch (c) { switch (c) {
@ -480,7 +484,8 @@ gotack:
return ZSKIP; return ZSKIP;
case ZSKIP: fclose(in); case ZSKIP: fclose(in);
return c; return c;
case ZACK: break; // Possible bug, added 23-08-99 case ZACK: Syslog('z', "zmsend: got ZACK");
break; // Possible bug, added 23-08-99
case ZRPOS: blklen = ((blklen >> 2) > 64) ? (blklen >> 2) : 64; case ZRPOS: blklen = ((blklen >> 2) > 64) ? (blklen >> 2) : 64;
goodblks = 0; goodblks = 0;
goodneeded = ((goodneeded << 1) > 16) ? 16 : goodneeded << 1; goodneeded = ((goodneeded << 1) > 16) ? 16 : goodneeded << 1;