Diff for /embedaddon/iftop/ether.h between versions 1.1.1.1 and 1.1.1.2

version 1.1.1.1, 2012/02/21 16:57:34 version 1.1.1.2, 2016/10/18 14:04:50
Line 12  struct ether_header { Line 12  struct ether_header {
         u_int8_t        ether_dhost[ETHER_ADDR_LEN];          u_int8_t        ether_dhost[ETHER_ADDR_LEN];
         u_int8_t        ether_shost[ETHER_ADDR_LEN];          u_int8_t        ether_shost[ETHER_ADDR_LEN];
         u_int16_t       ether_type;          u_int16_t       ether_type;
};} __attribute__((packed));
   
   
 struct vlan_8021q_header {  struct vlan_8021q_header {
         u_int16_t       priority_cfi_vid;          u_int16_t       priority_cfi_vid;
         u_int16_t       ether_type;          u_int16_t       ether_type;
 };  };
   
   /*
    * http://www.gsp.com/cgi-bin/man.cgi?section=9&topic=ieee80211_radiotap
    */
   struct radiotap_header {
           u_int8_t        it_version;     /* set to 0 */
           u_int8_t        it_pad;
           u_int16_t       it_len;         /* entire length */
           u_int32_t       it_present;     /* fields present */
   } __attribute__((packed));
   
 #endif   #endif 

Removed from v.1.1.1.1  
changed lines
  Added in v.1.1.1.2


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>