Let's say my apache config contains the following
CookieTracking on
CookieName userfault
CookieDomain userfault.com
LogFormat "%{userfault}C" userfaultlog
CustomLog /var/log/userfault.com/access.log userfaultlog
I see that the log then contains lines with IP.somenumber
, e.g.
257.15.13.478.1200074655803685
619.203.17.113.1200174880115935
I'd like to know the specifications for this number, more specifically how it can be stored in the most efficient way. I looked around and could only find the default CookieStyle is 'Netscape', but that didn't get me much further.
Can I safely assume it will fit in a 64bit number? Is it even a number (and decimal at that)?