change struct socket -> so_pcb from caddr_t to void *.

This commit is contained in:
Alfred Perlstein 2002-06-28 23:17:08 +00:00
parent a788442584
commit 02a32cd207

View File

@ -67,7 +67,7 @@ struct socket {
short so_options; /* from socket call, see socket.h */
short so_linger; /* time to linger while closing */
short so_state; /* internal state flags SS_*, below */
caddr_t so_pcb; /* protocol control block */
void *so_pcb; /* protocol control block */
struct protosw *so_proto; /* protocol handle */
/*
* Variables for connection queuing.