unix: use private enum as argument for unp_connect2()

instead of using historic PRU_ flags that are now not used by anything
rather than TCP debugging.
This commit is contained in:
Gleb Smirnoff 2022-08-17 11:50:31 -07:00
parent aea0cd0432
commit f6dc5aa342

View File

@ -293,7 +293,8 @@ static int unp_connect(struct socket *, struct sockaddr *,
struct thread *);
static int unp_connectat(int, struct socket *, struct sockaddr *,
struct thread *, bool);
static void unp_connect2(struct socket *so, struct socket *so2, int);
typedef enum { PRU_CONNECT, PRU_CONNECT2 } conn2_how;
static void unp_connect2(struct socket *so, struct socket *so2, conn2_how);
static void unp_disconnect(struct unpcb *unp, struct unpcb *unp2);
static void unp_dispose(struct socket *so);
static void unp_shutdown(struct unpcb *);
@ -2151,7 +2152,7 @@ unp_copy_peercred(struct thread *td, struct unpcb *client_unp,
}
static void
unp_connect2(struct socket *so, struct socket *so2, int req)
unp_connect2(struct socket *so, struct socket *so2, conn2_how req)
{
struct unpcb *unp;
struct unpcb *unp2;