Update deparser type, add emitting of option field

This commit is contained in:
Nico Schottelius 2019-03-23 14:20:11 +01:00
parent 9f05e57509
commit 22538a93c9

View file

@ -110,7 +110,8 @@ control MyDeparser(packet_out packet, in headers hdr) {
/* might be more than one subtype */ /* might be more than one subtype */
packet.emit(hdr.icmp6); packet.emit(hdr.icmp6);
packet.emit(hdr.icmp6_na); packet.emit(hdr.icmp6_na_ns);
packet.emit(hdr.icmp6_option_link_layer_addr);
} }
} }