Deleted Added
full compact
ifaddrs.h (122687) ifaddrs.h (250887)
1/* $FreeBSD: head/include/ifaddrs.h 122687 2003-11-14 18:53:22Z bms $ */
1/* $FreeBSD: head/include/ifaddrs.h 250887 2013-05-21 21:20:10Z ed $ */
2
3/*
4 * Copyright (c) 1995, 1999
5 * Berkeley Software Design, Inc. 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
9 * are met:

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

26 */
27
28#ifndef _IFADDRS_H_
29#define _IFADDRS_H_
30
31struct ifaddrs {
32 struct ifaddrs *ifa_next;
33 char *ifa_name;
2
3/*
4 * Copyright (c) 1995, 1999
5 * Berkeley Software Design, Inc. 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
9 * are met:

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

26 */
27
28#ifndef _IFADDRS_H_
29#define _IFADDRS_H_
30
31struct ifaddrs {
32 struct ifaddrs *ifa_next;
33 char *ifa_name;
34 u_int ifa_flags;
34 unsigned int ifa_flags;
35 struct sockaddr *ifa_addr;
36 struct sockaddr *ifa_netmask;
37 struct sockaddr *ifa_dstaddr;
38 void *ifa_data;
39};
40
41/*
42 * This may have been defined in <net/if.h>. Note that if <net/if.h> is

--- 23 unchanged lines hidden ---
35 struct sockaddr *ifa_addr;
36 struct sockaddr *ifa_netmask;
37 struct sockaddr *ifa_dstaddr;
38 void *ifa_data;
39};
40
41/*
42 * This may have been defined in <net/if.h>. Note that if <net/if.h> is

--- 23 unchanged lines hidden ---