From patchwork Thu May 30 22:24:47 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Joseph Myers X-Patchwork-Id: 1107954 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=pass (mailfrom) smtp.mailfrom=sourceware.org (client-ip=209.132.180.131; helo=sourceware.org; envelope-from=libc-alpha-return-102375-incoming=patchwork.ozlabs.org@sourceware.org; receiver=) Authentication-Results: ozlabs.org; dmarc=none (p=none dis=none) header.from=codesourcery.com Authentication-Results: ozlabs.org; dkim=pass (1024-bit key; secure) header.d=sourceware.org header.i=@sourceware.org header.b="VwFnLfzP"; dkim-atps=neutral Received: from sourceware.org (server1.sourceware.org [209.132.180.131]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 45FMb11cnpz9s1c for ; Fri, 31 May 2019 08:25:00 +1000 (AEST) DomainKey-Signature: a=rsa-sha1; c=nofws; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:date:from:to:subject:message-id:mime-version :content-type; q=dns; s=default; b=IKxu7EoFdOMVSgFSN+MkVmeQh5lFx uq8r6JhOzf86jLWLrGcQkUW6P7ZpLxyYxDbGVrUdN77Ic8HPZ7c4g3zanAg54O/c ty+WaT2TdSzpKjlDP4RB01bEI4YLy6e6yUtx/6r5sf8Tdmmxe0xsYouVNBXpjTQy FROrLZy/PO402k= DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:date:from:to:subject:message-id:mime-version :content-type; s=default; bh=rQqovKIvRtIJvcdSWaolCT1u6Sc=; b=VwF nLfzP8duwmMP8yxokhvHDzaSjIRPvsC/T4f0hzh20XcjBgclnTVsbIGIMulxxrCA zM+rKHF5fr2krXYHeiFoNBfB7/qcluF0i0RlEpwcRDQJGIbtW7XMuj/pkTH8H5e5 tyfLsAf39KIKODGakUadjAr2SodhrRiUPrAhluZ8= Received: (qmail 130693 invoked by alias); 30 May 2019 22:24:54 -0000 Mailing-List: contact libc-alpha-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: libc-alpha-owner@sourceware.org Delivered-To: mailing list libc-alpha@sourceware.org Received: (qmail 130684 invoked by uid 89); 30 May 2019 22:24:53 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-15.1 required=5.0 tests=AWL, BAYES_00, GIT_PATCH_0, GIT_PATCH_1, GIT_PATCH_2, GIT_PATCH_3, RCVD_IN_DNSWL_NONE autolearn=ham version=3.3.1 spammy=HX-Languages-Length:862 X-HELO: relay1.mentorg.com Date: Thu, 30 May 2019 22:24:47 +0000 From: Joseph Myers To: Subject: Add INADDR_ALLSNOOPERS_GROUP from Linux 5.1 to netinet/in.h Message-ID: User-Agent: Alpine 2.21 (DEB 202 2017-01-01) MIME-Version: 1.0 This patch adds INADDR_ALLSNOOPERS_GROUP from Linux 5.1 to netinet/in.h. Tested for x86_64. 2019-05-30 Joseph Myers * inet/netinet/in.h (INADDR_ALLSNOOPERS_GROUP): New macro. diff --git a/inet/netinet/in.h b/inet/netinet/in.h index be87de6462..24caf3c77d 100644 --- a/inet/netinet/in.h +++ b/inet/netinet/in.h @@ -204,6 +204,7 @@ enum #define INADDR_UNSPEC_GROUP ((in_addr_t) 0xe0000000) /* 224.0.0.0 */ #define INADDR_ALLHOSTS_GROUP ((in_addr_t) 0xe0000001) /* 224.0.0.1 */ #define INADDR_ALLRTRS_GROUP ((in_addr_t) 0xe0000002) /* 224.0.0.2 */ +#define INADDR_ALLSNOOPERS_GROUP ((in_addr_t) 0xe000006a) /* 224.0.0.106 */ #define INADDR_MAX_LOCAL_GROUP ((in_addr_t) 0xe00000ff) /* 224.0.0.255 */ #if !__USE_KERNEL_IPV6_DEFS