Hello,
Right now we have the similar set of macros inside wtap-int.h & pint.h.
I'd like to merge wtap-int.h macros to pint.h
The main difference is in naming of 64-bits version.
In pint.h it ends with 64 (pntoh64, pletoh64) in wtap it ends with ll
(pntohll, pletohll, phtonll, phtolell, htolell)
Which one we prefer? To be honest I'm bigger fan of 'll'.
If we want to use '64' I think it'd be also good to rename
s[hort] and l[ong] version to match convention:
pntohs -> pntoh16
pntohl -> pntoh32
...
htoles -> htole16
htolel -> htole32
Cheers,
Kuba.