]> arthur.barton.de Git - netatalk.git/blob - etc/atalkd/atserv.h
CVS id tags, define fixes, code beautification
[netatalk.git] / etc / atalkd / atserv.h
1 /*
2  * $Id: atserv.h,v 1.2 2001-06-25 20:13:45 rufustfirefly Exp $
3  *
4  * Copyright (c) 1990,1992 Regents of The University of Michigan.
5  * All Rights Reserved. See COPYRIGHT.
6  */
7
8 struct atserv {
9     char        *as_name;
10     u_char      as_port;                /* Used as a fall back */
11     int         (*as_packet)();
12 };
13
14 struct atport {
15     int                 ap_fd;
16     struct atport       *ap_next;
17     struct interface    *ap_iface;
18     u_char              ap_port;
19     int                 (*ap_packet)();
20 };
21
22 extern struct atserv    atserv[];
23 extern int              atservNATSERV;