Implemented nodelist fields8 search for FQDN
This commit is contained in:
@@ -922,33 +922,33 @@ int edit_bool(int y, int x, int val, char *help)
|
||||
|
||||
char *getloglevel(long val)
|
||||
{
|
||||
char *p;
|
||||
char *p;
|
||||
|
||||
p = xstrcpy((char *)"?");
|
||||
p = xstrcpy((char *)"?");
|
||||
|
||||
if (val & DLOG_ATTENT) p = xstrcat(p, (char *)"!");
|
||||
if (val & DLOG_NORMAL) p = xstrcat(p, (char *)"+");
|
||||
if (val & DLOG_VERBOSE) p = xstrcat(p, (char *)"-");
|
||||
if (val & DLOG_TCP) p = xstrcat(p, (char *)"A");
|
||||
if (val & DLOG_BBS) p = xstrcat(p, (char *)"B");
|
||||
if (val & DLOG_CHAT) p = xstrcat(p, (char *)"C");
|
||||
if (val & DLOG_DEVIO) p = xstrcat(p, (char *)"D");
|
||||
if (val & DLOG_EXEC) p = xstrcat(p, (char *)"E");
|
||||
if (val & DLOG_FILEFWD) p = xstrcat(p, (char *)"F");
|
||||
if (val & DLOG_HYDRA) p = xstrcat(p, (char *)"H");
|
||||
if (val & DLOG_IEMSI) p = xstrcat(p, (char *)"I");
|
||||
if (val & DLOG_LOCK) p = xstrcat(p, (char *)"L");
|
||||
if (val & DLOG_MAIL) p = xstrcat(p, (char *)"M");
|
||||
if (val & DLOG_NEWS) p = xstrcat(p, (char *)"N");
|
||||
if (val & DLOG_OUTSCAN) p = xstrcat(p, (char *)"O");
|
||||
if (val & DLOG_PACK) p = xstrcat(p, (char *)"P");
|
||||
if (val & DLOG_ROUTE) p = xstrcat(p, (char *)"R");
|
||||
if (val & DLOG_SESSION) p = xstrcat(p, (char *)"S");
|
||||
if (val & DLOG_TTY) p = xstrcat(p, (char *)"T");
|
||||
if (val & DLOG_XMODEM) p = xstrcat(p, (char *)"X");
|
||||
if (val & DLOG_ZMODEM) p = xstrcat(p, (char *)"Z");
|
||||
if (val & DLOG_ATTENT) p = xstrcat(p, (char *)"!");
|
||||
if (val & DLOG_NORMAL) p = xstrcat(p, (char *)"+");
|
||||
if (val & DLOG_VERBOSE) p = xstrcat(p, (char *)"-");
|
||||
if (val & DLOG_TCP) p = xstrcat(p, (char *)"A");
|
||||
if (val & DLOG_BBS) p = xstrcat(p, (char *)"B");
|
||||
if (val & DLOG_CHAT) p = xstrcat(p, (char *)"C");
|
||||
if (val & DLOG_DEVIO) p = xstrcat(p, (char *)"D");
|
||||
if (val & DLOG_EXEC) p = xstrcat(p, (char *)"E");
|
||||
if (val & DLOG_FILEFWD) p = xstrcat(p, (char *)"F");
|
||||
if (val & DLOG_HYDRA) p = xstrcat(p, (char *)"H");
|
||||
if (val & DLOG_IEMSI) p = xstrcat(p, (char *)"I");
|
||||
if (val & DLOG_LOCK) p = xstrcat(p, (char *)"L");
|
||||
if (val & DLOG_MAIL) p = xstrcat(p, (char *)"M");
|
||||
if (val & DLOG_NODELIST) p = xstrcat(p, (char *)"N");
|
||||
if (val & DLOG_OUTSCAN) p = xstrcat(p, (char *)"O");
|
||||
if (val & DLOG_PACK) p = xstrcat(p, (char *)"P");
|
||||
if (val & DLOG_ROUTE) p = xstrcat(p, (char *)"R");
|
||||
if (val & DLOG_SESSION) p = xstrcat(p, (char *)"S");
|
||||
if (val & DLOG_TTY) p = xstrcat(p, (char *)"T");
|
||||
if (val & DLOG_XMODEM) p = xstrcat(p, (char *)"X");
|
||||
if (val & DLOG_ZMODEM) p = xstrcat(p, (char *)"Z");
|
||||
|
||||
return p;
|
||||
return p;
|
||||
}
|
||||
|
||||
|
||||
@@ -984,8 +984,8 @@ long edit_logl(long val, char *txt)
|
||||
mvprintw(16, 5, "10. H Hydra debug");
|
||||
mvprintw(17, 5, "11. I EMSI debug");
|
||||
mvprintw( 7,45, "12. L Locking");
|
||||
mvprintw( 8,45, "13. M Mail debug");
|
||||
mvprintw( 9,45, "14. N News debug");
|
||||
mvprintw( 8,45, "13. M Mail/News");
|
||||
mvprintw( 9,45, "14. N Nodelist");
|
||||
mvprintw(10,45, "15. O Outboundscan");
|
||||
mvprintw(11,45, "16. P Packing");
|
||||
mvprintw(12,45, "17. R Routing");
|
||||
@@ -1010,7 +1010,7 @@ long edit_logl(long val, char *txt)
|
||||
show_lbit(17,24, val, DLOG_IEMSI);
|
||||
show_lbit( 7,64, val, DLOG_LOCK);
|
||||
show_lbit( 8,64, val, DLOG_MAIL);
|
||||
show_lbit( 9,64, val, DLOG_NEWS);
|
||||
show_lbit( 9,64, val, DLOG_NODELIST);
|
||||
show_lbit(10,64, val, DLOG_OUTSCAN);
|
||||
show_lbit(11,64, val, DLOG_PACK);
|
||||
show_lbit(12,64, val, DLOG_ROUTE);
|
||||
@@ -1034,7 +1034,7 @@ long edit_logl(long val, char *txt)
|
||||
case 11:val ^= DLOG_IEMSI; break;
|
||||
case 12:val ^= DLOG_LOCK; break;
|
||||
case 13:val ^= DLOG_MAIL; break;
|
||||
case 14:val ^= DLOG_NEWS; break;
|
||||
case 14:val ^= DLOG_NODELIST; break;
|
||||
case 15:val ^= DLOG_OUTSCAN; break;
|
||||
case 16:val ^= DLOG_PACK; break;
|
||||
case 17:val ^= DLOG_ROUTE; break;
|
||||
|
@@ -1348,9 +1348,9 @@ void s_mailer(void)
|
||||
mvprintw(16, 2, "10. No EMSI session");
|
||||
mvprintw(17, 2, "11. No Yooho/2U2");
|
||||
|
||||
mvprintw(12,31, "12. No Zmodem");
|
||||
mvprintw(13,31, "13. No Zedzap");
|
||||
mvprintw(14,31, "14. No Hydra");
|
||||
mvprintw(15,31, "12. No Zmodem");
|
||||
mvprintw(16,31, "13. No Zedzap");
|
||||
mvprintw(17,31, "14. No Hydra");
|
||||
|
||||
mvprintw(12,59, "18. Phonetrans 1-10");
|
||||
mvprintw(13,59, "19. Phonetrans 11-20");
|
||||
@@ -1412,9 +1412,9 @@ void e_mailer(void)
|
||||
show_bool(16,23, CFG.NoEMSI);
|
||||
show_bool(17,23, CFG.NoWazoo);
|
||||
|
||||
show_bool(12,52, CFG.NoZmodem);
|
||||
show_bool(13,52, CFG.NoZedzap);
|
||||
show_bool(14,52, CFG.NoHydra);
|
||||
show_bool(15,52, CFG.NoZmodem);
|
||||
show_bool(16,52, CFG.NoZedzap);
|
||||
show_bool(17,52, CFG.NoHydra);
|
||||
|
||||
show_int( 16,75, CFG.Req_Files);
|
||||
show_int( 17,75, CFG.Req_MBytes);
|
||||
@@ -1433,9 +1433,9 @@ void e_mailer(void)
|
||||
case 10:E_BOOL(16,23, CFG.NoEMSI, "If set then ^EMSI handshake^ is diabled")
|
||||
case 11:E_BOOL(17,23, CFG.NoWazoo, "If set then ^YooHoo/2U2^ (FTSC-0006) is disabled")
|
||||
|
||||
case 12:E_BOOL(12,52, CFG.NoZmodem, "If set then the ^Zmodem^ protocol is disabled")
|
||||
case 13:E_BOOL(13,52, CFG.NoZedzap, "If set then the ^Zedzap^ protocol is disabled")
|
||||
case 14:E_BOOL(14,52, CFG.NoHydra, "If set then the ^Hydra^ protocol is disabled")
|
||||
case 12:E_BOOL(15,52, CFG.NoZmodem, "If set then the ^Zmodem^ protocol is disabled")
|
||||
case 13:E_BOOL(16,52, CFG.NoZedzap, "If set then the ^Zedzap^ protocol is disabled")
|
||||
case 14:E_BOOL(17,52, CFG.NoHydra, "If set then the ^Hydra^ protocol is disabled")
|
||||
|
||||
case 18:e_trans(0);
|
||||
break;
|
||||
|
@@ -796,12 +796,12 @@ void SessionScreen(void)
|
||||
mvprintw(15, 6, "9. No EMSI");
|
||||
mvprintw(16, 6, "10. No YooHoo/2U2");
|
||||
mvprintw(17, 6, "11. No Filerequest");
|
||||
mvprintw(18, 6, "12. Don't call");
|
||||
mvprintw(19, 6, "13. 8.3 names");
|
||||
|
||||
mvprintw(14,41, "14. No Zmodem");
|
||||
mvprintw(15,41, "15. No Zedzap");
|
||||
mvprintw(16,41, "16. No Hydra");
|
||||
mvprintw(13,41, "12. Don't call");
|
||||
mvprintw(14,41, "13. 8.3 names");
|
||||
mvprintw(15,41, "14. No Zmodem");
|
||||
mvprintw(16,41, "15. No Zedzap");
|
||||
mvprintw(17,41, "16. No Hydra");
|
||||
}
|
||||
|
||||
|
||||
@@ -824,12 +824,12 @@ void SessionEdit(void)
|
||||
show_bool(15,26, nodes.NoEMSI);
|
||||
show_bool(16,26, nodes.NoWaZOO);
|
||||
show_bool(17,26, nodes.NoFreqs);
|
||||
show_bool(18,26, nodes.NoCall);
|
||||
show_bool(19,26, nodes.FNC);
|
||||
|
||||
show_bool(14,61, nodes.NoZmodem);
|
||||
show_bool(15,61, nodes.NoZedzap);
|
||||
show_bool(16,61, nodes.NoHydra);
|
||||
show_bool(13,61, nodes.NoCall);
|
||||
show_bool(14,61, nodes.FNC);
|
||||
show_bool(15,61, nodes.NoZmodem);
|
||||
show_bool(16,61, nodes.NoZedzap);
|
||||
show_bool(17,61, nodes.NoHydra);
|
||||
|
||||
switch(select_menu(16)) {
|
||||
case 0: return;
|
||||
@@ -846,12 +846,12 @@ void SessionEdit(void)
|
||||
case 9: E_BOOL(15,26, nodes.NoEMSI, "Disable ^EMSI handshake^ with this node")
|
||||
case 10:E_BOOL(16,26, nodes.NoWaZOO, "Disable ^YooHoo/2U2 handshake^ (FTSC-0006) with this node")
|
||||
case 11:E_BOOL(17,26, nodes.NoFreqs, "Disallow ^file requests^ from this node")
|
||||
case 12:E_BOOL(18,26, nodes.NoCall, "Don't ^call^ this node")
|
||||
case 13:E_BOOL(19,26, nodes.FNC, "Node needs ^DOS 8.3^ filenames")
|
||||
|
||||
case 14:E_BOOL(14,61, nodes.NoZmodem, "Disable ^Zmodem^ protocol with this node")
|
||||
case 15:E_BOOL(15,61, nodes.NoZedzap, "Disable ^Zedzap^ protocol with this node")
|
||||
case 16:E_BOOL(16,61, nodes.NoHydra, "Disable ^Hydra^ protocol with this node")
|
||||
case 12:E_BOOL(13,61, nodes.NoCall, "Don't ^call^ this node")
|
||||
case 13:E_BOOL(14,61, nodes.FNC, "Node needs ^DOS 8.3^ filenames")
|
||||
case 14:E_BOOL(15,61, nodes.NoZmodem, "Disable ^Zmodem^ protocol with this node")
|
||||
case 15:E_BOOL(16,61, nodes.NoZedzap, "Disable ^Zedzap^ protocol with this node")
|
||||
case 16:E_BOOL(17,61, nodes.NoHydra, "Disable ^Hydra^ protocol with this node")
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user