From owner-freebsd-hackers Wed Jul 12 19:10:18 2000 Delivered-To: freebsd-hackers@freebsd.org Received: from hetnet.nl (net015s.hetnet.nl [194.151.104.155]) by hub.freebsd.org (Postfix) with ESMTP id 1906F37B53C for ; Wed, 12 Jul 2000 19:10:15 -0700 (PDT) (envelope-from wilbertdg@hetnet.nl) Received: from alias ([207.214.220.1]) by hetnet.nl with Microsoft SMTPSVC(5.5.1877.387.38); Thu, 13 Jul 2000 04:10:10 +0200 Message-ID: <095401bfec6f$495ba110$0a00a8c0@alias> From: "Wilbert de Graaf" To: "FreeBSD-hackers" Subject: #include question: requires Date: Wed, 12 Jul 2000 19:08:47 -0700 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.00.2919.6700 X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2919.6700 Sender: owner-freebsd-hackers@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Maybe obvious to some of you, but I had to define two new structures (as described in an ietf draft) in . This in order to be able to support igmpv3 / multicast source filters. Anyway, these structures require 'struct sockaddr_storage' which is defined in . When I compiled the code, it stopped since several source files only include and not . To solve this I added these 3 lines #ifndef _SYS_SOCKET_H #include #endif somewhere in the top of . I want to verify if this is indeed the best way to solve it ? - Wilbert To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-hackers" in the body of the message