TCP/IP协议详解卷2 第7章 域和协议

        先标注一个错误,domain.h书里说在netinet目录下,但是我的这个却在sys下。

所有domain形成链表,由全局变量domains来指出

struct domain {
 int dom_family;  /* AF_xxx */
 char *dom_name;
 void (*dom_init)  /* initialize domain data structures */
  __P((void));
 int (*dom_externalize) /* externalize access rights */
  __P((struct mbuf *));
 int (*dom_dispose)  /* dispose of internalized rights */
  __P((struct mbuf *));
 struct protosw *dom_protosw, *dom_protoswNPROTOSW;
 struct domain *dom_next;
 int (*dom_rtattach)  /* initialize routing table */
  __P((void **, int));
 int dom_rtoffset;  /* an arg to rtattach, in bits */
 int dom_maxrtkey;  /* for routing layer */
};



















你可能感兴趣的:(TCP/IP协议详解卷2 第7章 域和协议)