summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--slirp/mbuf.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/slirp/mbuf.h b/slirp/mbuf.h
index 55170e517b..0708840f04 100644
--- a/slirp/mbuf.h
+++ b/slirp/mbuf.h
@@ -82,12 +82,13 @@ struct m_hdr {
 struct mbuf {
 	struct	m_hdr m_hdr;
 	Slirp *slirp;
+	bool	arp_requested;
+	uint64_t expiration_date;
+	/* start of dynamic buffer area, must be last element */
 	union M_dat {
 		char	m_dat_[1]; /* ANSI don't like 0 sized arrays */
 		char	*m_ext_;
 	} M_dat;
-    bool     arp_requested;
-    uint64_t expiration_date;
 };
 
 #define m_next		m_hdr.mh_next