1 1.4 dyoung /* $NetBSD: af_inetany.h,v 1.4 2008/07/02 07:44:14 dyoung Exp $ */ 2 1.3 dyoung 3 1.3 dyoung /*- 4 1.3 dyoung * Copyright (c) 2008 David Young. All rights reserved. 5 1.3 dyoung * 6 1.3 dyoung * Redistribution and use in source and binary forms, with or without 7 1.3 dyoung * modification, are permitted provided that the following conditions 8 1.3 dyoung * are met: 9 1.3 dyoung * 1. Redistributions of source code must retain the above copyright 10 1.3 dyoung * notice, this list of conditions and the following disclaimer. 11 1.3 dyoung * 2. Redistributions in binary form must reproduce the above copyright 12 1.3 dyoung * notice, this list of conditions and the following disclaimer in the 13 1.3 dyoung * documentation and/or other materials provided with the distribution. 14 1.3 dyoung * 15 1.3 dyoung * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND 16 1.3 dyoung * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 17 1.3 dyoung * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 18 1.3 dyoung * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE 19 1.3 dyoung * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 20 1.3 dyoung * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 21 1.3 dyoung * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 22 1.3 dyoung * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 23 1.3 dyoung * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 24 1.3 dyoung * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 25 1.3 dyoung * SUCH DAMAGE. 26 1.3 dyoung */ 27 1.3 dyoung 28 1.1 dyoung #ifndef _IFCONFIG_AF_INETANY_H 29 1.1 dyoung #define _IFCONFIG_AF_INETANY_H 30 1.1 dyoung 31 1.1 dyoung #include <sys/types.h> 32 1.1 dyoung #include <prop/proplib.h> 33 1.1 dyoung 34 1.1 dyoung #define IFADDR_PARAM(__arg) {.cmd = (__arg), .desc = #__arg} 35 1.1 dyoung #define BUFPARAM(__arg) {.buf = &(__arg), .buflen = sizeof(__arg)} 36 1.1 dyoung 37 1.1 dyoung struct apbuf { 38 1.1 dyoung void *buf; 39 1.1 dyoung size_t buflen; 40 1.1 dyoung }; 41 1.1 dyoung 42 1.1 dyoung struct afparam { 43 1.1 dyoung struct { 44 1.1 dyoung char *buf; 45 1.1 dyoung size_t buflen; 46 1.1 dyoung } name[2]; 47 1.1 dyoung struct apbuf dgaddr, addr, brd, dst, mask, req, dgreq, defmask, 48 1.1 dyoung pre_aifaddr_arg; 49 1.1 dyoung struct { 50 1.1 dyoung unsigned long cmd; 51 1.1 dyoung const char *desc; 52 1.1 dyoung } aifaddr, difaddr, gifaddr; 53 1.4 dyoung int (*pre_aifaddr)(prop_dictionary_t, const struct afparam *); 54 1.1 dyoung }; 55 1.1 dyoung 56 1.4 dyoung void commit_address(prop_dictionary_t, prop_dictionary_t, 57 1.4 dyoung const struct afparam *); 58 1.1 dyoung 59 1.1 dyoung #endif /* _IFCONFIG_AF_INETANY_H */ 60