///|
/// 网卡设备
pub struct Device {
  name : String
  description : String
}

///|
/// 原始数据包(data 是拷贝副本,不持有 C 缓冲区)
pub struct PacketRaw {
  ts_sec : Int64
  ts_usec : Int
  caplen : Int
  len : Int
  data : Bytes
}