On Tue, Nov 29, 2022 at 09:11:27PM +0000, Jeremy Sowden wrote: > The types of `ip_totlen` in the `ulog` view and the `INSERT_IP_PACKET_FULL` > function are `integer`, but the column in the `ulog2` table is `smallint`. The > "total length" field of an IP packet is an unsigned 16-bit integer, whereas > `smallint` in PostgreSQL is a signed 16-bit integer type. Change the type of > `ulog2.ip_totlen` to `integer`. Also applied this to ulogd2, thanks.