/usr/share/doc/fbbdoc/html/fmtinf.htm is in fbbdoc 1:1999-2.1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 | <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>FORMAT of INF.SYS</title>
</head>
<body background="/back_fbb.jpg">
<p> </p>
<h1 align="Center"> INF.SYS </h1>
<p> </p>
<pre><big><b>INF.SYS file (\FBB\SYSTEM).</b></big>
This binary file holds the information on all users of the BBS. This file
is very important and must not be edited or changed otherwise the list of the
users could be lost. This file can only be opened for reading.
It is organized with records, each record containing information on a user.
Never modify this file while the BBS is running.
Structure of one record (C language) :
#define uchar unsigned char
typedef struct { /* Callsign structure used in info */
char callsign[7] ;
char ssid ;
} indicat ;
typedef struct {
indicat indic ; /* 8 Callsign */
indicat relai[8] ; /* 64 Digis path */
long lastmes ; /* 4 Last L number */
long nbcon ; /* 4 Number of connexions */
long hcon ; /* 4 Last connexion date */
long lastyap ; /* 4 Last YN date */
unsigned flags ; /* 2 Flags */
unsigned on_base ; /* 2 ON Base number */
uchar nbl ; /* 1 Lines paging */
uchar lang ; /* 1 Language */
long newbanner ; /* 4 Date of new banner (lang.NEW)*/
ushort download ; /* 2 Download size in KB */
char free[20] ; /* 20 Reserved */
char thema ; /* 1 Current thema selection */
char nom[18] ; /* 18 1st Name */
char prenom[13]; /* 13 Christian name */
char adres[61] ; /* 61 Address */
char ville[31] ; /* 31 City */
char teld[13] ; /* 13 home phone */
char telp[13] ; /* 13 job phone */
char home[41] ; /* 41 home BBS */
char qra[7] ; /* 7 Qth Locator */
char priv[13] ; /* 13 PRIV directory */
char filtre[7] ; /* 7 LC choice filter */
char pass[13] ; /* 13 Password */
char zip[9] ; /* 9 Zipcode */
} info ; /* 360 bytes = lenght of one record */
Dates are given as the number of seconds since january 1st, 1970 00:00.
In C language, all strings are ended with a NULL (00 hex) character.
<font color="#800000">This page was last updated 17-Apr-99</font>
</pre>
</body>
</html>
|