CS考试辅导 // typedef: introduces alternate type name

// typedef: introduces alternate type name
typedef bit<48> macAddr_t;
typedef bit<32> ip4Addr_t;

Copyright By PowCoder代写 加微信 powcoder

// headers: ordered collection of members
// operations test and set validity bits:
// isValid(), setValid(), setInvalid()
header ethernet_t {
macAddr_t dstAddr;
macAddr_t srcAddr;
bit<16> type;

// variable declaration and member access
ethernet_t ethernet;
macAddr_t src = ethernet.srcAddr;

// struct: unordered collection of members
struct headers_t {
ethernet_t ethernet;

程序代写 CS代考 加微信: powcoder QQ: 1823890830 Email: powcoder@163.com