1/*
2 * $Id: main.h,v 1.6 2009-10-14 01:38:28 didg Exp $
3 */
4
5#ifndef ATALKD_MAIN_H
6#define ATALKD_MAIN_H
7
8#include <sys/cdefs.h>
9#include "config.h"
10
11extern int transition;
12extern int stabletimer, newrtmpdata;
13
14int ifconfig ( const char *, unsigned long, struct sockaddr_at * );
15void setaddr ( struct interface *, u_int8_t, u_int16_t,
16        u_int8_t, u_int16_t, u_int16_t );
17void bootaddr ( struct interface * );
18void dumpconfig ( struct interface * );
19
20#ifdef linux
21int ifsetallmulti ( const char *, int);
22#endif
23
24#endif /* ATALKD_MAIN_H */
25