Log of /trunk
Directory Listing
Revision
20 -
Directory Listing
-
[select for diffs]
Modified
2014-04-09T10:26:49Z
(12 years ago)
by
trond
Diff to
previous 19
(
colored)
64-bit quantities, i.e. int64_t, differ on i386 and amd64.
In the first case it's an alias for long long, but in the second
case it's an alias for long.
The solution seems to be twofold: (1) use printf length modifier for
(unsigned) long long, and (2) explicitly cast each 64-bit quantity
to (unsigned) long long.
Tested on FreeBSD/i386 stable/8 r255624 with gcc 4.2.1.
Tested on FreeBSD/amd64 stable/9 r263963 with clang 3.3.
Tested on FreeBSD/amd64 stable/9 r263963 with clang 3.3 using -m32.
Revision
19 -
Directory Listing
-
[selected]
Modified
2014-04-09T09:20:17Z
(12 years ago)
by
trond
Diff to
previous 18
(
colored)
Reformatted long lines.
Clarified the help message.
Added proper length modifiers to 8-bit and 16-bit quantities (hh and h).
Revision
7 -
Directory Listing
-
[select for diffs]
Modified
2014-03-19T15:40:13Z
(12 years, 1 month ago)
by
trond
Diff to
previous 6
(
colored)
,
to
selected 19
(
colored)
darkstat 3.0.718 has deviated from the format specified in the export-format.txt file.
The lastseen timestamps comes ahead of the MAC address.
Added a macro to choose whether to follow the strict format or the latest format.
Interpretation of the latest format is the default. Perhaps this should be a command line option.
Corrected a serious mistake in my conversion of 64 bit quantities from network byte order (big endian) to little endian.
Why can't ntohl() and its friends have 64 bit counterparts?