Deleted Added
full compact
ng_parse.h (122481) ng_parse.h (123600)
1
2/*
3 * ng_parse.h
4 *
5 * Copyright (c) 1999 Whistle Communications, Inc.
6 * All rights reserved.
7 *
8 * Subject to the following obligations and disclaimer of warranty, use and

--- 23 unchanged lines hidden (view full) ---

32 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
33 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
34 * THIS SOFTWARE, EVEN IF WHISTLE COMMUNICATIONS IS ADVISED OF THE POSSIBILITY
35 * OF SUCH DAMAGE.
36 *
37 * Author: Archie Cobbs <archie@freebsd.org>
38 *
39 * $Whistle: ng_parse.h,v 1.2 1999/11/29 01:43:48 archie Exp $
1
2/*
3 * ng_parse.h
4 *
5 * Copyright (c) 1999 Whistle Communications, Inc.
6 * All rights reserved.
7 *
8 * Subject to the following obligations and disclaimer of warranty, use and

--- 23 unchanged lines hidden (view full) ---

32 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
33 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
34 * THIS SOFTWARE, EVEN IF WHISTLE COMMUNICATIONS IS ADVISED OF THE POSSIBILITY
35 * OF SUCH DAMAGE.
36 *
37 * Author: Archie Cobbs <archie@freebsd.org>
38 *
39 * $Whistle: ng_parse.h,v 1.2 1999/11/29 01:43:48 archie Exp $
40 * $FreeBSD: head/sys/netgraph/ng_parse.h 122481 2003-11-11 12:30:37Z ru $
40 * $FreeBSD: head/sys/netgraph/ng_parse.h 123600 2003-12-17 12:40:34Z ru $
41 */
42
43#ifndef _NETGRAPH_NG_PARSE_H_
44#define _NETGRAPH_NG_PARSE_H_
45
46/*
47
48 This defines a library of routines for converting between various C

--- 388 unchanged lines hidden (view full) ---

437 * IP ADDRESS TYPE
438 *
439 * Default value: 0.0.0.0
440 * Additional info: None required
441 */
442extern const struct ng_parse_type ng_parse_ipaddr_type;
443
444/*
41 */
42
43#ifndef _NETGRAPH_NG_PARSE_H_
44#define _NETGRAPH_NG_PARSE_H_
45
46/*
47
48 This defines a library of routines for converting between various C

--- 388 unchanged lines hidden (view full) ---

437 * IP ADDRESS TYPE
438 *
439 * Default value: 0.0.0.0
440 * Additional info: None required
441 */
442extern const struct ng_parse_type ng_parse_ipaddr_type;
443
444/*
445 * ETHERNET ADDRESS TYPE
446 *
447 * Default value: None
448 * Additional info: None required
449 */
450extern const struct ng_parse_type ng_parse_enaddr_type;
451
452/*
445 * VARIABLE LENGTH BYTE ARRAY TYPE
446 *
447 * The bytes are displayed in hex. The ASCII form may be either an
448 * array of bytes or a string constant, in which case the array is
449 * zero-filled after the string bytes.
450 *
451 * Default value: All bytes are zero
452 * Additional info: ng_parse_array_getLength_t *

--- 79 unchanged lines hidden ---
453 * VARIABLE LENGTH BYTE ARRAY TYPE
454 *
455 * The bytes are displayed in hex. The ASCII form may be either an
456 * array of bytes or a string constant, in which case the array is
457 * zero-filled after the string bytes.
458 *
459 * Default value: All bytes are zero
460 * Additional info: ng_parse_array_getLength_t *

--- 79 unchanged lines hidden ---