Lines Matching defs:protosw
77 struct protosw { struct
78 short pr_type; /* socket type used for */
79 struct domain *pr_domain; /* domain protocol a member of */
80 short pr_protocol; /* protocol number */
81 short pr_flags; /* see below */
83 pr_input_t *pr_input; /* input to protocol (from below) */
84 pr_output_t *pr_output; /* output to protocol (from above) */
85 pr_ctlinput_t *pr_ctlinput; /* control input (from below) */
86 pr_ctloutput_t *pr_ctloutput; /* control output (from above) */
88 pr_init_t *pr_init;
89 pr_fasttimo_t *pr_fasttimo; /* fast timeout (200ms) */
90 pr_slowtimo_t *pr_slowtimo; /* slow timeout (500ms) */
91 pr_drain_t *pr_drain; /* flush any excess space possible */
93 struct pr_usrreqs *pr_usrreqs; /* user-protocol hook */