1 /*
2  * privproc.h - Privileged process for Miredo
3  */
4 
5 /***********************************************************************
6  *  Copyright © 2004-2007 Rémi Denis-Courmont.                         *
7  *  This program is free software; you can redistribute and/or modify  *
8  *  it under the terms of the GNU General Public License as published  *
9  *  by the Free Software Foundation; version 2 of the license, or (at  *
10  *  your option) any later version.                                    *
11  *                                                                     *
12  *  This program is distributed in the hope that it will be useful,    *
13  *  but WITHOUT ANY WARRANTY; without even the implied warranty of     *
14  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.               *
15  *  See the GNU General Public License for more details.               *
16  *                                                                     *
17  *  You should have received a copy of the GNU General Public License  *
18  *  along with this program; if not, you can get it from:              *
19  *  http://www.gnu.org/copyleft/gpl.html                               *
20  ***********************************************************************/
21 
22 #ifndef MIREDO_PRIVPROC_H
23 # define MIREDO_PRIVPROC_H
24 
25 struct miredo_tunnel_settings
26 {
27 	struct in6_addr addr;
28 	uint16_t mtu;
29 };
30 
31 #endif
32