1/*
2 * $Id: zip.h,v 1.4 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_ZIP_H
9#define ATALKD_ZIP_H 1
10
11#include <sys/cdefs.h>
12
13struct ziptab {
14    struct ziptab	*zt_next,
15			*zt_prev;
16    u_char		zt_len;
17    char		*zt_name;
18    u_char		*zt_bcast;
19    struct list		*zt_rt;
20};
21
22extern struct ziptab	*ziptab, *ziplast;
23struct ziptab	*newzt (const int, const char *);
24
25int addzone ( struct rtmptab *, int, char * );
26int zip_getnetinfo ( struct interface * );
27int zip_packet(struct atport *ap,struct sockaddr_at *from, char *data, int len);
28
29#endif /* atalkd/zip.h */
30