home *** CD-ROM | disk | FTP | other *** search
- The following is the format of the dialing directories for ICEX version 2.05:
-
- This information is provided for those who need to know or wish to know the
- actual structure for ICEX dialing directories.
-
- The dialing directories consist of a header record followed by any number of
- information records.
-
- ================================================================================
-
- The header record is defined as follows:
-
- Pascal | C
- |
- header_rec = record | struct {
- version_number : word; | unsigned version_number;
- sort_type : word; | unsigned sort_type;
- filler : string[146]; | char filler[147];
- end; | };
-
-
- version_number -> Holds the current version of ICEX supported by this dir.
-
- sort_type -> 0 = sorted by mnemonic/phone number.
- 1 = sorted by city name/bbs name.
- 2 = empty directory.
-
- filler -> Extra space for later information.
- Note that the header is the same record length as information
- records.
-
- ================================================================================
-
- Information records are defined as follows:
-
- Pascal | C
- |
- Info_rec = record | struct {
- mnem_or_phone:string[14]; | char mnem_or_phone[15];
- city_or_bbs_name:string[30];| char city_or_bbs_name[31];
- inqueue:boolean; | char inqueue;
- d_p_s:string[3]; | char d_p_s[4];
- date:string[5]; | char date[6];
- time:string[5]; | char time[6];
- curdials:word; | unsigned curdials;
- script:string[12]; | char script[13];
- filler:array[0..72] of byte;| char filler[73];
- end; | }
- |
-
- mnem_or_phone -> city mnemonic (city.lis) or BBS phone number (*.205).
- city_or_bbs_name -> the actual name of the city or BBS.
- inqueue -> 0 = not in the queue (not tagged).
- 1 = in the queue (tagged).
- d_p_s -> Databits, Parity, Stopbits for async protocol (8N2,7E1,...).
- date -> date of last connect ('NEVER' or 'xx-xx').
- time -> time of last connect ('NONE ' or 'xx:xx').
- curdials -> can be any value, used as an internal counter
- script -> chain script for BBS dialers (*.205)
- filler -> room for future expansions.
-
- ================================================================================
-