master/ethernet.h
branchstable-1.1
changeset 1719 42ed27ae6785
parent 1716 9440f4ff25c7
child 1744 7bc131b92039
equal deleted inserted replaced
1718:048c7310279c 1719:42ed27ae6785
    76     ec_datagram_t datagram; /**< datagram */
    76     ec_datagram_t datagram; /**< datagram */
    77     void (*state)(ec_eoe_t *); /**< state function for the state machine */
    77     void (*state)(ec_eoe_t *); /**< state function for the state machine */
    78     struct net_device *dev; /**< net_device for virtual ethernet device */
    78     struct net_device *dev; /**< net_device for virtual ethernet device */
    79     struct net_device_stats stats; /**< device statistics */
    79     struct net_device_stats stats; /**< device statistics */
    80     unsigned int opened; /**< net_device is opened */
    80     unsigned int opened; /**< net_device is opened */
    81     cycles_t t_last; /**< time of last rate output */
    81     unsigned long rate_jiffies; /**< time of last rate output */
    82     struct sk_buff *rx_skb; /**< current rx socket buffer */
    82     struct sk_buff *rx_skb; /**< current rx socket buffer */
    83     off_t rx_skb_offset; /**< current write pointer in the socket buffer */
    83     off_t rx_skb_offset; /**< current write pointer in the socket buffer */
    84     size_t rx_skb_size; /**< size of the allocated socket buffer memory */
    84     size_t rx_skb_size; /**< size of the allocated socket buffer memory */
    85     uint8_t rx_expected_fragment; /**< next expected fragment number */
    85     uint8_t rx_expected_fragment; /**< next expected fragment number */
    86     uint32_t rx_counter; /**< octets received during last second */
    86     uint32_t rx_counter; /**< octets received during last second */