Skip to content

Commit

Permalink
fix ipv4 header
Browse files Browse the repository at this point in the history
  • Loading branch information
edgar-costa committed Dec 10, 2021
1 parent a7e0634 commit 197733b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion exercises/12-Fast-Reroute/p4src/include/headers.p4
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ header ethernet_t {
header ipv4_t {
bit<4> version;
bit<4> ihl;
bit<2> ecn;
bit<6> dscp;
bit<2> ecn;
bit<16> totalLen;
bit<16> identification;
bit<3> flags;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ header ethernet_t {
header ipv4_t {
bit<4> version;
bit<4> ihl;
bit<2> ecn;
bit<6> dscp;
bit<2> ecn;
bit<16> totalLen;
bit<16> identification;
bit<3> flags;
Expand Down

0 comments on commit 197733b

Please sign in to comment.