From Plt@1:103/705 to All on Wednesday, November 28, 2018 20:16:50
Question about the usersdefs.inc and the offset. The file starts at len_alias to LEN_MODEM and at u_lias 8 # offset to Alias. I am trying to figure out since len_alias and u_alis to read each field and to determine using fseek how many bytes need to be used in order to jump to each field or the total bytes to skip to the next user record? Is the Len_Alias u_alias being saved twice in the users record?
# userdefs.inc
# Baja include file defining various Synchronet USER related constants
# $id: $
# @format.tab-size 8, @format.use-tabs true
!define LEN_ALIAS 25 # User alias
!define LEN_NAME 25 # User name
!define LEN_HANDLE 8 # User chat handle
!define LEN_NOTE 30 # User note
!define LEN_COMP 30 # User computer description
!define LEN_COMMENT 60 # User comment
!define LEN_NETMAIL 60 # NetMail forwarding address
!define LEN_PASS 8 # User password
!define LEN_PHONE 12 # User phone number
!define LEN_BIRTH 8 # Birthday in MM/DD/YY format
!define LEN_ADDRESS 30 # User address
!define LEN_LOCATION 30 # Location (City, State
!define LEN_ZIPCODE 10 # Zip/Postal code
!define LEN_MODEM 8 # User modem type description
#**************************************************************************
# This is a list of offsets into the USER.DAT file for different variables
# that are stored (for each user #************************************************************************** !define U_ALIAS 0 # Offset to alias
!define U_NAME U_ALIAS+LEN_ALIAS # Offset to name
!define U_HANDLE U_NAME+LEN_NAME
!define U_NOTE U_HANDLE+LEN_HANDLE+2
!define U_COMP U_NOTE+LEN_NOTE
!define U_COMMENT U_COMP+LEN_COMP+2