From patchwork Wed Jul 8 14:57:11 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Carlos O'Donell X-Patchwork-Id: 492969 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org 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 205581402AA for ; Thu, 9 Jul 2015 00:57:21 +1000 (AEST) Authentication-Results: ozlabs.org; dkim=pass (1024-bit key; secure) header.d=sourceware.org header.i=@sourceware.org header.b=R+VO1QZh; dkim-atps=neutral DomainKey-Signature: a=rsa-sha1; c=nofws; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:message-id:date:from:mime-version:to:subject :content-type:content-transfer-encoding; q=dns; s=default; b=GKf pcnxmtBvqu6zbk9mTLzMsZddW8UdDn/SQgRib/77rf+8LDRjb+hs4zyvcae4opvO 7abKKzVObR3CTWd/jsM81M9mj+ZNMmZLxYFjzYW4qd8TcjPH6erYEFbqtcd2Wc/3 on+TJCy+nruPm5ep40e+AAa+CQHR3P++Rbu04Jgw= 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:message-id:date:from:mime-version:to:subject :content-type:content-transfer-encoding; s=default; bh=2TYMdffLS ciXiDK7T2QSvpx1Dmk=; b=R+VO1QZh6Yes2siapWDTEzlykQvdZAcxKtKiHBXa2 ZjH3cQLHo9fs9+kSjSa2EJFryHBOfwEg65XWL7eul3FmpeHOxuBhYWq5GvX8WRXW eNnYBKboImINEnLctpn1GiRPNTZ5cdibXU0YVzaYgf4WrVE8MYPhg9nxn+a+kv6E kM= Received: (qmail 75767 invoked by alias); 8 Jul 2015 14:57:16 -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 75748 invoked by uid 89); 8 Jul 2015 14:57:13 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-HELO: mx1.redhat.com Message-ID: <559D3A47.6030804@redhat.com> Date: Wed, 08 Jul 2015 10:57:11 -0400 From: "Carlos O'Donell" User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Thunderbird/31.7.0 MIME-Version: 1.0 To: GNU C Library Subject: [COMMITTED] BZ#18643: Add missing RFC3542 defines. Trivial sync with latest kernel headers. Committed. 2015-07-08 Carlos O'Donell [BZ #18643] * sysdeps/unix/sysv/linux/bits/in.h: Define IPV6_RECVPATHMTU, IPV6_PATHMTU, and IPV6_DONTFRAG. diff --git a/sysdeps/unix/sysv/linux/bits/in.h b/sysdeps/unix/sysv/linux/bits/in.h index f684736..887719f 100644 --- a/sysdeps/unix/sysv/linux/bits/in.h +++ b/sysdeps/unix/sysv/linux/bits/in.h @@ -184,6 +184,7 @@ struct in_pktinfo #define IPV6_IPSEC_POLICY 34 #define IPV6_XFRM_POLICY 35 +/* Advanced API (RFC3542) (1). */ #define IPV6_RECVPKTINFO 49 #define IPV6_PKTINFO 50 #define IPV6_RECVHOPLIMIT 51 @@ -195,7 +196,11 @@ struct in_pktinfo #define IPV6_RTHDR 57 #define IPV6_RECVDSTOPTS 58 #define IPV6_DSTOPTS 59 +#define IPV6_RECVPATHMTU 60 +#define IPV6_PATHMTU 61 +#define IPV6_DONTFRAG 62 +/* Advanced API (RFC3542) (2). */ #define IPV6_RECVTCLASS 66 #define IPV6_TCLASS 67