~ubuntu-branches/debian/lenny/netatalk/lenny

« back to all changes in this revision

Viewing changes to etc/atalkd/zip.h

  • Committer: Bazaar Package Importer
  • Author(s): Sebastian Rittau
  • Date: 2004-01-19 12:43:49 UTC
  • Revision ID: james.westby@ubuntu.com-20040119124349-es563jbp0hk0ae51
Tags: upstream-1.6.4
ImportĀ upstreamĀ versionĀ 1.6.4

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * $Id: zip.h,v 1.3 2001/06/25 20:13:45 rufustfirefly 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
 
 
13
struct 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
 
 
22
extern struct ziptab    *ziptab, *ziplast;
 
23
struct ziptab   *newzt __P((const int, const char *));
 
24
 
 
25
int addzone __P(( struct rtmptab *, int, char * ));
 
26
int zip_getnetinfo __P(( struct interface * ));
 
27
 
 
28
#endif /* atalkd/zip.h */