]>
git.ipfire.org Git - thirdparty/sarg.git/blob - include/readlog.h
5 \brief Possible return codes for the functions parsing the input log.
7 enum ReadLogReturnCodeEnum
9 //! Line successfuly read.
11 //! Unknown line format.
14 RLRC_LastRetCode
//!< last entry of the list.
18 \brief Data read from an input log file.
22 //! The time corresponding to the entry.
24 //! The IP address connecting to internet
28 //! The URL of the visited site.
30 //! Time necessary to process the user's request.
31 unsigned int ElapsedTime
;
32 //! Number of transfered bytes.
33 unsigned long int DataSize
;
34 //! HTTP code returned to the user for the entry.
38 #endif //READLOG_HEADER