From 9df7dc5f69c3a8edc2150b0702c1504b5f7be8b7 Mon Sep 17 00:00:00 2001 From: Holger Hans Peter Freyther Date: Wed, 1 Jun 2011 17:29:15 +0200 Subject: wireformat: Send the length in the network order.. this is a format change. but it is necessary now. --- include/osmo-pcap/wireformat.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'include') diff --git a/include/osmo-pcap/wireformat.h b/include/osmo-pcap/wireformat.h index a642bb1..f094051 100644 --- a/include/osmo-pcap/wireformat.h +++ b/include/osmo-pcap/wireformat.h @@ -38,8 +38,8 @@ struct osmo_pcap_data { uint8_t type; - uint8_t spare[3]; - uint32_t len; + uint8_t spare; + uint16_t len; uint8_t data[0]; } __attribute__((packed)); -- cgit v1.2.3