Deleted Added
full compact
policy_parse.y (122107) policy_parse.y (171135)
1/* $KAME: policy_parse.y,v 1.14 2003/06/27 03:39:20 itojun Exp $ */
2
3/*
4 * Copyright (C) 1995, 1996, 1997, 1998, and 1999 WIDE Project.
5 * All rights reserved.
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions

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

45 * protocol/transport parsed as protocol/mode/any-any/default
46 * protocol/transport//level parsed as protocol/mode/any-any/level
47 *
48 * You can concatenate these requests with either ' '(single space) or '\n'.
49 */
50
51%{
52#include <sys/cdefs.h>
1/* $KAME: policy_parse.y,v 1.14 2003/06/27 03:39:20 itojun Exp $ */
2
3/*
4 * Copyright (C) 1995, 1996, 1997, 1998, and 1999 WIDE Project.
5 * All rights reserved.
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions

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

45 * protocol/transport parsed as protocol/mode/any-any/default
46 * protocol/transport//level parsed as protocol/mode/any-any/level
47 *
48 * You can concatenate these requests with either ' '(single space) or '\n'.
49 */
50
51%{
52#include <sys/cdefs.h>
53__FBSDID("$FreeBSD: head/lib/libipsec/policy_parse.y 122107 2003-11-05 09:41:23Z ume $");
53__FBSDID("$FreeBSD: head/lib/libipsec/policy_parse.y 171135 2007-07-01 12:08:08Z gnn $");
54
55#include <sys/types.h>
56#include <sys/param.h>
57#include <sys/socket.h>
58
59#include <netinet/in.h>
54
55#include <sys/types.h>
56#include <sys/param.h>
57#include <sys/socket.h>
58
59#include <netinet/in.h>
60#include <netinet6/ipsec.h>
60#include <netipsec/ipsec.h>
61
62#include <stdlib.h>
63#include <stdio.h>
64#include <string.h>
65#include <netdb.h>
66
67#include "ipsec_strerror.h"
68

--- 371 unchanged lines hidden ---
61
62#include <stdlib.h>
63#include <stdio.h>
64#include <string.h>
65#include <netdb.h>
66
67#include "ipsec_strerror.h"
68

--- 371 unchanged lines hidden ---