1/*
2 * $Id: nbp.h,v 1.3 2009-10-13 22:55:37 didg Exp $
3 *
4 * Copyright (c) 1990,1993 Regents of The University of Michigan.
5 * All Rights Reserved. See COPYRIGHT.
6 */
7
8#ifndef ATALKD_NBP_H
9#define ATALKD_NBP_H 1
10
11struct nbptab {
12    struct nbptab	*nt_prev, *nt_next;
13    struct nbpnve	nt_nve;
14    struct interface    *nt_iface;
15};
16
17extern struct nbptab	*nbptab;
18
19int nbp_packet(struct atport *ap, struct sockaddr_at *from, char *data, int len);
20
21#endif
22