Deleted Added
full compact
iplang.h (31183) iplang.h (53024)
1/*
1/*
2 * Copyright (C) 1997 by Darren Reed.
2 * Copyright (C) 1997-1998 by Darren Reed.
3 *
4 * Redistribution and use in source and binary forms are permitted
5 * provided that this notice is preserved and due credit is given
6 * to the original author and the contributors.
7 */
8typedef struct iface {
9 int if_MTU;
10 char *if_name;

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

44 struct aniphdr *ah_prev;
45} aniphdr_t;
46
47#define ah_ip ah_un.ahu_ip
48#define ah_data ah_un.ahu_data
49#define ah_tcp ah_un.ahu_tcp
50#define ah_udp ah_un.ahu_udp
51#define ah_icmp ah_un.ahu_icmp
3 *
4 * Redistribution and use in source and binary forms are permitted
5 * provided that this notice is preserved and due credit is given
6 * to the original author and the contributors.
7 */
8typedef struct iface {
9 int if_MTU;
10 char *if_name;

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

44 struct aniphdr *ah_prev;
45} aniphdr_t;
46
47#define ah_ip ah_un.ahu_ip
48#define ah_data ah_un.ahu_data
49#define ah_tcp ah_un.ahu_tcp
50#define ah_udp ah_un.ahu_udp
51#define ah_icmp ah_un.ahu_icmp
52
53extern int get_arpipv4 __P((char *, char *));
54