Changed structure for node records, added structure for routing

This commit is contained in:
Michiel Broek 2002-06-15 14:04:57 +00:00
parent 070a0b0bdf
commit 6824b44975
2 changed files with 130 additions and 61 deletions

View File

@ -1,11 +1,10 @@
/*****************************************************************************
*
* File ..................: records.h
* Purpose ...............: MBSE BBS Global structure
* Last modification date : 25-Sep-2000
* $Id$
* Purpose ...............: MBSE BBS Global records structure
*
*****************************************************************************
* Copyright (C) 1997-2000
* Copyright (C) 1997-2002
*
* Michiel Broek FIDO: 2:280/2802
* Beekmansbos 10
@ -119,5 +118,8 @@ struct _newfiles newfiles;
struct _scanmgrhdr scanmgrhdr; /* Filefind areas */
struct _scanmgr scanmgr;
struct _routehdr routerhdr; /* Routing file */
struct _route route;
#endif

View File

@ -4,7 +4,7 @@
* Purpose ...............: MBSE BBS Global structure
*
*****************************************************************************
* Copyright (C) 1997-2001
* Copyright (C) 1997-2002
*
* Michiel Broek FIDO: 2:280/2802
* Beekmansbos 10
@ -55,7 +55,8 @@ typedef enum {I_DZA, I_ZAP, I_ZMO, I_SLK, I_KER} IPROT;
typedef enum {E_NOISP, E_TMPISP, E_PRMISP} EMODE;
typedef enum {AREAMGR, FILEMGR, EMAIL} SERVICE;
typedef enum {FEEDINN, FEEDRNEWS, FEEDUUCP} NEWSFEED;
typedef enum {S_DIRECT, S_DIR, S_FTP} SESSIONTYPE;
typedef enum {R_ROUTE, R_NEWDEST, R_BOUNCE, R_CC} ROUTER;
/***********************************************************************
@ -1160,7 +1161,7 @@ struct _nodes {
char Sysop[36]; /* Sysop name */
fidoaddr Aka[20]; /* Aka's for this system */
char Fpasswd[16]; /* Files password */
char Epasswd[16]; /* Session/Mail password */
char Epasswd[16]; /* Mail password */
char Apasswd[16]; /* Areamgr password */
char UplFmgrPgm[9]; /* Uplink FileMgr program */
char UplFmgrPass[16]; /* Uplink FileMgr password */
@ -1220,6 +1221,47 @@ struct _nodes {
statcnt MailRcvd; /* Messages received */
char dial[41]; /* Dial command override */
char phone[2][21]; /* Phone numbers override */
char Spasswd[16]; /* Session password */
int Session_out; /* Outbound session type */
int Session_in; /* Inbound session type */
/* Directory in/outbound */
char Dir_out_path[65]; /* Outbound files */
char Dir_out_clock[65]; /* Outbound filelock check */
char Dir_out_mlock[65]; /* Outbound filelock create */
char Dir_in_path[65]; /* Inbound files */
char Dir_in_clock[65]; /* Inbound filelock check */
char Dir_in_mlock[65]; /* Inbound filelock create */
unsigned Dir_out_chklck : 1; /* Outbound check lock */
unsigned Dir_out_waitclr : 1; /* Outbound wait for clear */
unsigned Dir_out_mklck : 1; /* Outbound create lock */
unsigned Dir_in_chklck : 1; /* Inbound check lock */
unsigned Dir_in_waitclr : 1; /* Inbound wait for clear */
unsigned Dir_in_mklck : 1; /* Inbound create lock */
/* FTP transfer */
char FTP_site[65]; /* Site name or IP address */
char FTP_user[17]; /* Username */
char FTP_pass[17]; /* Password */
char FTP_starthour[6]; /* Start hour */
char FTP_endhour[6]; /* End hour */
char FTP_out_path[65]; /* Outbound files path */
char FTP_out_clock[65]; /* Outbound filelock check */
char FTP_out_mlock[65]; /* Outbound filelock create */
char FTP_in_path[65]; /* Inbound files path */
char FTP_in_clock[65]; /* Inbound filelock check */
char FTP_in_mlock[65]; /* Inbound filelock create */
unsigned FTP_lock1byte : 1; /* Locksize 1 or 0 bytes */
unsigned FTP_unique : 1; /* Unique storage */
unsigned FTP_uppercase : 1; /* Force uppercase */
unsigned FTP_lowercase : 1; /* Force lowercase */
unsigned FTP_out_chklck : 1; /* Outbound check lockfile */
unsigned FTP_out_waitclr : 1; /* Outbound wait for clear */
unsigned FTP_out_mklck : 1; /* Outbound create lock */
unsigned FTP_in_chklck : 1; /* Inbound check lockfile */
unsigned FTP_in_waitclr : 1; /* Inbound wait for clear */
unsigned FTP_in_mklck : 1; /* Inbound create lock */
};
@ -1508,5 +1550,30 @@ struct _history {
};
/*
* Routing file, will override standard routing.
* The mask is some kind of free formatted string like:
* 1:All
* 2:2801/16
* 2:2801/All
* If sname is used, the message To name is also tested for, this way
* extra things can be done for netmail to a specific person.
*/
struct _routehdr {
long hdrsize; /* Size of header */
long recsize; /* Size of records */
};
struct _route {
char mask[25]; /* Mask to check */
char sname[37]; /* Opt. name to test */
int routetype; /* What to do with it */
fidoaddr dest; /* Destination address */
char dname[37]; /* Destination name */
};
#endif