From 238497fc85332bb8bb9cb3245d3f691500190559 Mon Sep 17 00:00:00 2001 From: Paul Jakma Date: Tue, 7 Aug 2007 18:49:18 +0000 Subject: [isisd] Add support for Solaris DLPI 2007-08-07 James Carlson * configure.ac: Added support for separate link-layer access mechanisms in isisd. * isis_network.c: split up into isis_bpf.c, isis_dlpi.c, and isis_pfpacket.c, selected by autoconf, and added DLPI support. * (general) Fixed to allow compilation and use on Solaris. --- isisd/isis_tlv.h | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'isisd/isis_tlv.h') diff --git a/isisd/isis_tlv.h b/isisd/isis_tlv.h index 951a254a..fc9f35f8 100644 --- a/isisd/isis_tlv.h +++ b/isisd/isis_tlv.h @@ -152,6 +152,10 @@ struct lan_neigh u_char LAN_addr[6]; }; +#ifdef __SUNPRO_C +#pragma pack(1) +#endif + /* struct for LSP entry */ struct lsp_entry { @@ -161,6 +165,10 @@ struct lsp_entry u_int16_t checksum; } __attribute__ ((packed)); +#ifdef __SUNPRO_C +#pragma pack() +#endif + /* struct for checksum */ struct checksum { -- cgit v1.2.1