Next: , Up: pop3 Analyzer


7.22.1 The pop3_session_info record

The pop3 analyzer maintains a pop3_session_info record per pop3 connection:

     type pop3_session_info: record {
         id: count;              # Unique session ID.
         quit_sent: bool;        # Client issued a QUIT.
         last_command: string;   # Last command of client.
     };

The corresponding fields are:

`id'
The unique session identifier assigned to this session. Sessions are numbered starting at 1 and incremented with each new session.
`quit_sent'
True if the client has sent a QUIT command.
`last_command'
Last command issued by the client.