Indention of code
[netsniff-ng.git] / src / include / bootstrap.h
blobf8292b6278d84568cb0621f13068be17d9f1cad1
1 /*
2 * Copyright (C) 2009, 2010 Daniel Borkmann <daniel@netsniff-ng.org> and
3 * Emmanuel Roullit <emmanuel@netsniff-ng.org>
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or (at
8 * your option) any later version.
10 * This program is distributed in the hope that it will be useful, but
11 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
12 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
13 * for more details.
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin St, Fifth Floor, Boston, MA 02110, USA
20 #ifndef _NET_BOOTSTRAP_H_
21 #define _NET_BOOTSTRAP_H_
23 #include "types.h"
24 #include "config.h"
26 extern int init_system(struct system_data *sd, int *sock,
27 struct ring_buff **rb);
28 extern void cleanup_system(struct system_data *sd, int *sock,
29 struct ring_buff **rb);
31 #endif /* _NET_BOOTSTRAP_H_ */