aboutsummaryrefslogtreecommitdiff
path: root/src/pdesc.h
diff options
context:
space:
mode:
authorToni Uhlig <matzeton@googlemail.com>2020-03-14 18:44:39 +0100
committerToni Uhlig <matzeton@googlemail.com>2020-03-14 18:44:39 +0100
commit1e8037d84d01ef605b667f8db42f3c95831d7920 (patch)
tree0d1323c7b1ceaa461fc555010182747e1ff8fbb5 /src/pdesc.h
parentd727de62e14a48ef5da16d034549a76909303209 (diff)
improved icmp/forward descriptor structs and use -Wextra for all builds
Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
Diffstat (limited to 'src/pdesc.h')
-rw-r--r--src/pdesc.h9
1 files changed, 4 insertions, 5 deletions
diff --git a/src/pdesc.h b/src/pdesc.h
index ec14787..49aa733 100644
--- a/src/pdesc.h
+++ b/src/pdesc.h
@@ -73,11 +73,11 @@
*/
typedef struct forward_desc_t {
/** ping_tunnel_pkt_t seq_no */
- int seq_no;
+ uint16_t seq_no;
/** length of data */
- int length;
+ uint16_t length;
/** amount of data not yet transferred */
- int remaining;
+ size_t remaining;
char data[0];
} forward_desc_t;
@@ -89,9 +89,8 @@ typedef struct forward_desc_t {
*/
typedef struct icmp_desc_t {
/** total length of ICMP packet, including ICMP header and ptunnel data. */
- int pkt_len;
+ uint16_t pkt_len;
double last_resend;
- int resend_count;
uint16_t seq_no;
uint16_t icmp_id;
icmp_echo_packet_t *pkt;