Deleted Added
full compact
atmconfig_device.h (133565) atmconfig_device.h (145799)
1/*
2 * Copyright (c) 2001-2002
3 * Fraunhofer Institute for Open Communication Systems (FhG Fokus).
4 * All rights reserved.
5 * Copyright (c) 2003-2004
6 * Hartmut Brandt.
7 * All rights reserved.
8 *

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

24 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30 * SUCH DAMAGE.
31 *
1/*
2 * Copyright (c) 2001-2002
3 * Fraunhofer Institute for Open Communication Systems (FhG Fokus).
4 * All rights reserved.
5 * Copyright (c) 2003-2004
6 * Hartmut Brandt.
7 * All rights reserved.
8 *

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

24 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30 * SUCH DAMAGE.
31 *
32 * $FreeBSD: head/sbin/atm/atmconfig/atmconfig_device.h 133565 2004-08-12 12:31:43Z harti $
32 * $FreeBSD: head/sbin/atm/atmconfig/atmconfig_device.h 145799 2005-05-02 10:31:27Z delphij $
33 */
34#ifndef ATMCONFIG_DEVICE_H_
35#define ATMCONFIG_DEVICE_H_
36
37#include <sys/types.h>
38#include <sys/queue.h>
39#include <stdint.h>
40
41/*
42 * ATM interface table
43 */
44struct atmif {
45 TAILQ_ENTRY(atmif) link;
46 uint64_t found;
47 int32_t index;
33 */
34#ifndef ATMCONFIG_DEVICE_H_
35#define ATMCONFIG_DEVICE_H_
36
37#include <sys/types.h>
38#include <sys/queue.h>
39#include <stdint.h>
40
41/*
42 * ATM interface table
43 */
44struct atmif {
45 TAILQ_ENTRY(atmif) link;
46 uint64_t found;
47 int32_t index;
48 u_char *ifname;
48 char *ifname;
49 size_t ifnamelen;
50 uint32_t pcr;
51 int32_t media;
52 uint32_t vpi_bits;
53 uint32_t vci_bits;
54 uint32_t max_vpcs;
55 uint32_t max_vccs;
56 u_char *esi;

--- 19 unchanged lines hidden ---
49 size_t ifnamelen;
50 uint32_t pcr;
51 int32_t media;
52 uint32_t vpi_bits;
53 uint32_t vci_bits;
54 uint32_t max_vpcs;
55 uint32_t max_vccs;
56 u_char *esi;

--- 19 unchanged lines hidden ---