diff options
Diffstat (limited to 'vrt/lib/expanded_header.cc')
-rw-r--r-- | vrt/lib/expanded_header.cc | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/vrt/lib/expanded_header.cc b/vrt/lib/expanded_header.cc index d5c4ea888..0eb2042d8 100644 --- a/vrt/lib/expanded_header.cc +++ b/vrt/lib/expanded_header.cc @@ -23,7 +23,7 @@ #include <config.h> #endif #include <vrt/expanded_header.h> -#include <arpa/inet.h> // needs autoconf'ing +#include <gruel/inet.h> //#include <stdio.h> namespace vrt { @@ -112,6 +112,12 @@ namespace vrt { #include "expanded_header_switch_body.h" } + /* is this a if context packet? */ + if (h->if_context_p()){ + *payload = p; + *n32_bit_words_payload = n32_bit_words_packet; + } + return true; } |