Correct spelling of 0x4000 in previous commit. This one line change from
a 42k patch seemed easier to retype than apply, but apparently not. :-) Submitted by: pjd
This commit is contained in:
parent
26d969a376
commit
bd6bdecfd4
@ -196,7 +196,7 @@ struct uio;
|
||||
*/
|
||||
struct pr_usrreqs {
|
||||
double __Break_the_struct_layout_for_now;
|
||||
int (*pru_abort)(struct socket *so);
|
||||
void (*pru_abort)(struct socket *so);
|
||||
int (*pru_accept)(struct socket *so, struct sockaddr **nam);
|
||||
int (*pru_attach)(struct socket *so, int proto, struct thread *td);
|
||||
int (*pru_bind)(struct socket *so, struct sockaddr *nam,
|
||||
@ -246,7 +246,7 @@ struct pr_usrreqs {
|
||||
* All nonvoid pru_*() functions below return EOPNOTSUPP.
|
||||
*/
|
||||
|
||||
int pru_abort_notsupp(struct socket *so);
|
||||
void pru_abort_notsupp(struct socket *so);
|
||||
int pru_accept_notsupp(struct socket *so, struct sockaddr **nam);
|
||||
int pru_attach_notsupp(struct socket *so, int proto, struct thread *td);
|
||||
int pru_bind_notsupp(struct socket *so, struct sockaddr *nam,
|
||||
|
@ -208,7 +208,7 @@ extern struct mtx accept_mtx;
|
||||
#define SS_ASYNC 0x0200 /* async i/o notify */
|
||||
#define SS_ISCONFIRMING 0x0400 /* deciding to accept connection req */
|
||||
#define SS_ISDISCONNECTED 0x2000 /* socket disconnected from peer */
|
||||
#define SS_PROTOREF 0x400 /* strong protocol reference */
|
||||
#define SS_PROTOREF 0x4000 /* strong protocol reference */
|
||||
|
||||
/*
|
||||
* Socket state bits now stored in the socket buffer state field.
|
||||
|
Loading…
Reference in New Issue
Block a user