ddp_pcb.h revision 127195
1/*
2 * Copyright (c) 1990,1994 Regents of The University of Michigan.
3 * All Rights Reserved.  See COPYRIGHT.
4 *
5 * $FreeBSD: head/sys/netatalk/ddp_pcb.h 127195 2004-03-19 07:21:22Z rwatson $
6 */
7
8#ifndef _NETATALK_DDP_PCB_H_
9#define	_NETATALK_DDP_PCB_H_
10
11int	at_pcballoc(struct socket *so);
12int	at_pcbconnect(struct ddpcb *ddp, struct sockaddr *addr,
13	    struct thread *td);
14void	at_pcbdetach(struct socket *so, struct ddpcb *ddp);
15void	at_pcbdisconnect(struct ddpcb *ddp);
16int	at_pcbsetaddr(struct ddpcb *ddp, struct sockaddr *addr,
17	    struct thread *td);
18void	at_sockaddr(struct ddpcb *ddp, struct sockaddr **addr);
19
20#endif
21