protoname_pkt.h
上传用户:juan65231
上传日期:2014-02-17
资源大小:194k
文件大小:1k
源码类别:

网络

开发平台:

Unix_Linux

  1. #ifndef __protoname_pkt_h__
  2. #define __protoname_pkt_h__
  3. #include <packet.h>
  4. #define HDR_PROTONAME_PKT(p) hdr_protoname_pkt::access(p)
  5. struct hdr_protoname_pkt {
  6.     nsaddr_t pkt_src_; // Node which originated this packet
  7. nsaddr_t pkt_dst_;
  8.     u_int16_t pkt_len_; // Packet length (in bytes)
  9.     u_int8_t pkt_seq_num_; // Packet sequence number     u_int16_t pkt_app_;    //the variable to differ serv     u_int16_t pkt_temp_;    inline u_int16_t& pkt_temp() { return pkt_temp_; }            //u_int16_t pkt_pairkeys_[10];             //inline u_int16_t& pkt_pairkeys(int i) { return pkt_pairkeys_[i]; }                     u_int8_t pkt_ran_; inline u_int8_t& pkt_ran() { return pkt_ran_; }               
  10.     inline nsaddr_t& pkt_src() { return pkt_src_; }
  11.  inline nsaddr_t& pkt_dst() { return pkt_dst_; }
  12.     inline u_int16_t& pkt_len() { return pkt_len_; }
  13.     inline u_int8_t& pkt_seq_num() { return pkt_seq_num_; }
  14.     inline u_int16_t& pkt_app() { return pkt_app_; }
  15.     static int offset_;
  16.     inline static int& offset() { return offset_; }
  17.     inline static hdr_protoname_pkt* access(const Packet* p) {
  18.      return (hdr_protoname_pkt*)p->access(offset_);
  19.     }
  20. };
  21. #endif