ipid is 16-bit and ttl is 8-bit

This commit is contained in:
Eric 2013-09-02 13:22:52 -04:00
parent 1ed0c2a32d
commit d44b0f10e4
1 changed files with 2 additions and 2 deletions

View File

@ -68,8 +68,8 @@ void fs_add_ip_fields(fieldset_t *fs, struct iphdr *ip)
{
fs_add_string(fs, "saddr", make_ip_str(ip->saddr), 1);
fs_add_string(fs, "daddr", make_ip_str(ip->daddr), 1);
fs_add_uint64(fs, "ipid", ntohl(ip->id));
fs_add_uint64(fs, "ttl", ntohl(ip->ttl));
fs_add_uint64(fs, "ipid", ntohs(ip->id));
fs_add_uint64(fs, "ttl", ip->ttl);
}
#define TIMESTR_LEN 50