#include #include header ethernet_t { bit<48> dst_addr; bit<48> src_addr; bit<16> eth_type; } header simple_header { bit<8> a; } header nested_header { simple_header s; } struct Headers { ethernet_t eth_hdr; nested_header n; } struct Meta { } parser p(packet_in pkt, out Headers hdr, inout Meta m, inout standard_metadata_t sm) { state start { transition parse_hdrs; } state parse_hdrs { pkt.extract(hdr.eth_hdr); transition accept; } } control ingress(inout Headers h, inout Meta m, inout standard_metadata_t sm) { apply { } } control vrfy(inout Headers h, inout Meta m) { apply {} } control update(inout Headers h, inout Meta m) { apply {} } control egress(inout Headers h, inout Meta m, inout standard_metadata_t sm) { apply {} } control deparser(packet_out b, in Headers h) { apply {b.emit(h);} } V1Switch(p(), vrfy(), ingress(), egress(), update(), deparser()) main;