Linux核心数据结构--rtable

阅读更多
用来描叙向某个IP主机发送包的路由信息。此结构在IP路由cache内部实用。

struct rtable

{

    struct rtable     *rt_next;

    __u32             rt_dst;

    __u32             rt_src;

    __u32             rt_gateway;

    atomic_t          rt_refcnt;

    atomic_t          rt_use;

    unsigned long     rt_window;

    atomic_t          rt_lastuse;

    struct hh_cache   *rt_hh;

    struct device     *rt_dev;

    unsigned short    rt_flags;

    unsigned short    rt_mtu;

    unsigned short    rt_irtt;

    unsigned char     rt_tos;

};

你可能感兴趣的:(数据结构,Linux,Cache)