ftp_session_info record
The main data structure managed by the ftp analyzer is
a collection of ftp_session_info records, where the
record type is shown below:
type ftp_session_info: record {
id: count; # unique number associated w/ session
user: string; # username, if determined
request: string; # pending request or requests
num_requests: count; # count of pending requests
request_t: time; # time of request
log_if_not_denied: bool; # unless code 530 on reply, log it
log_if_not_unavail: bool; # unless code 550 on reply, log it
log_it: bool; # if true, log the request(s)
};
The corresponding fields are:
id
1 and incrementing with each new session.
user
request
num_requests
request_t
log_if_not_denied
530 ("denied").
log_if_not_unavail
550 ("unavail").
log_it