]> arthur.barton.de Git - netatalk.git/blob - etc/atalkd/atserv.h
Removed duplicate -I tags from CFLAGS
[netatalk.git] / etc / atalkd / atserv.h
1 /*
2  * Copyright (c) 1990,1992 Regents of The University of Michigan.
3  * All Rights Reserved. See COPYRIGHT.
4  */
5
6 struct atserv {
7     char        *as_name;
8     u_char      as_port;                /* Used as a fall back */
9     int         (*as_packet)();
10 };
11
12 struct atport {
13     int                 ap_fd;
14     struct atport       *ap_next;
15     struct interface    *ap_iface;
16     u_char              ap_port;
17     int                 (*ap_packet)();
18 };
19
20 extern struct atserv    atserv[];
21 extern int              atservNATSERV;