Synchronet v3.19b-Win32 (install) has been released (Jan-2022).

You can donate to the Synchronet project using PayPal.

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
ref:callinfo.bbs [2021/02/27 03:41] – Added Pascal code example BoonDockref:callinfo.bbs [2021/02/27 04:42] (current) – [Datastructure] Highlighted code and made it downloadable BoonDock
Line 10: Line 10:
 The ''CALLINFO.BBS'' is a plain text file consisting of CRLF-delimited lines, parsed one line at a time. The ''CALLINFO.BBS'' is a plain text file consisting of CRLF-delimited lines, parsed one line at a time.
  
-^ Line ^Example                 ^Description   ^Comment            ^ +^ Line ^Example                 ^Description            ^Comment            ^ 
-|01    |Jim Harrer              |              | +|01    |Jim Harrer              |User Name              | 
-|02    |5                       | +|02    |5                       |Baud                   |300=1, 1200=2, 2400=0, 9600=3, 19200=4, Local=5 
-|03    |Bakersfield, CA         | +|03    |Bakersfield, CA         |Calling From           
-|04    |1000                    | +|04    |1000                    |Security Level         
-|05    |120                     | +|05    |120                     |User Time Left         
-|06    |MONO                    | +|06    |MONO                    |Color or Mono          
-|07    |WCATIS#               | +|07    |WCATIS#               |Password               
-|08    |1                       | +|08    |1                       |User Reference Number  
-|09    |0                       | +|09    |0                       |Time On                
-|10    |12:44                   | +|10    |12:44                   |Time Str               
-|11    |12:44 05/08/89          |               |{Changed in v2.0 } | +|11    |12:44 05/08/89          |Time-Date              |{Changed in v2.0 } | 
-|12    |ABCDEFGHIJKLMNOYZ       | +|12    |ABCDEFGHIJKLMNOYZ       |Conference Joined      
-|13    |0                       | +|13    |0                       |Daily Downloads        
-|14    |100                     | +|14    |100                     |Max Downloads          
-|15    |0                       | +|15    |0                       |Daily Download K       
-|16    |10                      | +|16    |10                      |Max Download K         
-|17    |555-555-5555            | +|17    |555-555-5555            |Phone Number           
-|18    |05/08/89 12:44          | +|18    |05/08/89 12:44          |Date-Time              
-|19    |NOVICE                  | +|19    |NOVICE                  |Novice or Expert       
-|20    |All                     | +|20    |All                     |Transfer Method |All, Ymodem, Ymodem/G, Xmodem, Xmodem/CRC, Xmodem-1K, Xmodem-1K/G, Ascii 
-|21    |04/24/89                | +|21    |04/24/89                |Last New Date          
-|22    |190                     | +|22    |190                     |Times on               
-|23    |23                      | +|23    |23                      |Lines per Page         
-|24    |808                     | +|24    |808                     |Highest Message Read   
-|25    |0                       | +|25    |0                       |Uploads                
-|26    |2                       | +|26    |2                       |Downloads              
-|27    |8                                      |{ Databits +|27    |8                       |Databits (7 or 8)      
-|28    |LOCAL                   | +|28    |LOCAL                   |LOCAL or REMOTE        
-|29    |COM0                    | +|29    |COM0                    |COM Port               
-|30    |06/26/58                | +|30    |06/26/58                |Birth Date             
-|31    |38400                   | +|31    |38400                   |Com Port Speed         | Baud Init or Baud Rate 
-|32    |FALSE                   | +|32    |FALSE                   |Already Connected      
-|33    |Normal Connection       | +|33    |Normal Connection       |MNP/ARQ or Normal Connection         
-|34    |05/08/89 13:44          | +|34    |05/08/89 13:44          |Date Time (Global)     
-|35    |1                       | +|35    |1                       |Node ID                
-|36    |0                       |+|36    |0                       |Door Number            |
  
 +Note: In order to keep track of midnight rollovers, line 11 was
 +modified in version 2.0 to include MM/DD/YY.
 ===== Datastructure ===== ===== Datastructure =====
 Most of the original software was written in Pascal. This is a routine to write the file (in Pascal) Most of the original software was written in Pascal. This is a routine to write the file (in Pascal)
  
 +<file pascal Save_Caller_Info.pas>
 procedure Save_Caller_Info; procedure Save_Caller_Info;
   { Save the callers information when exiting to a live program or   { Save the callers information when exiting to a live program or
Line 139: Line 142:
     CheckError('Closing CALLINFO.BBS File');     CheckError('Closing CALLINFO.BBS File');
   end;   end;
- + </file>
 ===== See Also ===== ===== See Also =====
   * [[:ref:|ref index]]   * [[:ref:|ref index]]