freebsd-dev/sys/netatalk/at_extern.h
Eivind Eklund 1d5e9e2255 Make INET a proper option.
This will not make any of object files that LINT create change; there
might be differences with INET disabled, but hardly anything compiled
before without INET anyway.  Now the 'obvious' things will give a
proper error if compiled without inet - ipx_ip, ipfw, tcp_debug.  The
only thing that _should_ work (but can't be made to compile reasonably
easily) is sppp :-(

This commit move struct arpcom from <netinet/if_ether.h> to
<net/if_arp.h>.
1998-01-08 23:42:31 +00:00

39 lines
1.1 KiB
C

#ifdef _NET_IF_ARP_H_
extern timeout_t aarpprobe;
extern int aarpresolve __P((struct arpcom *,
struct mbuf *,
struct sockaddr_at *,
u_char *));
extern void aarpinput __P(( struct arpcom *, struct mbuf *));
extern int at_broadcast __P((struct sockaddr_at *));
#endif
#ifdef _NETATALK_AARP_H_
extern void aarptfree __P((struct aarptab *));
#endif
extern void aarp_clean __P((void));
extern int at_control __P(( struct socket *so,
int cmd,
caddr_t data,
struct ifnet *ifp,
struct proc *p ));
extern u_short at_cksum __P(( struct mbuf *m, int skip));
extern void ddp_init __P((void ));
extern struct at_ifaddr *at_ifawithnet __P((struct sockaddr_at *));
#ifdef _NETATALK_DDP_VAR_H_
extern int ddp_output __P((struct mbuf *m, struct socket *so));
#endif
#if defined (_NETATALK_DDP_VAR_H_) && defined(_NETATALK_AT_VAR_H_)
extern struct ddpcb *ddp_search __P((struct sockaddr_at *,
struct sockaddr_at *,
struct at_ifaddr *));
#endif
#ifdef _NET_ROUTE_H_
int ddp_route( struct mbuf *m, struct route *ro);
#endif