From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.org/gmane.linux.lib.musl.general/10388 Path: news.gmane.org!.POSTED!not-for-mail From: Szabolcs Nagy Newsgroups: gmane.linux.lib.musl.general Subject: [PATCH 1/4] add PF_QIPCRTR, AF_QIPCRTR from linux v4.7 to sys/socket.h Date: Sat, 20 Aug 2016 17:04:05 +0200 Message-ID: References: Reply-To: musl@lists.openwall.com NNTP-Posting-Host: blaine.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: blaine.gmane.org 1471705471 1485 195.159.176.226 (20 Aug 2016 15:04:31 GMT) X-Complaints-To: usenet@blaine.gmane.org NNTP-Posting-Date: Sat, 20 Aug 2016 15:04:31 +0000 (UTC) User-Agent: Mutt/1.6.0 (2016-04-01) To: musl@lists.openwall.com Original-X-From: musl-return-10401-gllmg-musl=m.gmane.org@lists.openwall.com Sat Aug 20 17:04:21 2016 Return-path: Envelope-to: gllmg-musl@m.gmane.org Original-Received: from mother.openwall.net ([195.42.179.200]) by blaine.gmane.org with smtp (Exim 4.84_2) (envelope-from ) id 1bb7op-0008IF-B1 for gllmg-musl@m.gmane.org; Sat, 20 Aug 2016 17:04:19 +0200 Original-Received: (qmail 7424 invoked by uid 550); 20 Aug 2016 15:04:18 -0000 Mailing-List: contact musl-help@lists.openwall.com; run by ezmlm Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-ID: Original-Received: (qmail 7386 invoked from network); 20 Aug 2016 15:04:16 -0000 Mail-Followup-To: musl@lists.openwall.com Content-Disposition: inline In-Reply-To: Xref: news.gmane.org gmane.linux.lib.musl.general:10388 Archived-At: macros for qualcom ip router protocol, new in linux commit bdabad3e363d825ddf9679dd431cca0b2c30f881 --- include/sys/socket.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/include/sys/socket.h b/include/sys/socket.h index 59ab1e2..8664779 100644 --- a/include/sys/socket.h +++ b/include/sys/socket.h @@ -107,7 +107,8 @@ struct linger { #define PF_NFC 39 #define PF_VSOCK 40 #define PF_KCM 41 -#define PF_MAX 42 +#define PF_QIPCRTR 42 +#define PF_MAX 43 #define AF_UNSPEC PF_UNSPEC #define AF_LOCAL PF_LOCAL @@ -154,6 +155,7 @@ struct linger { #define AF_NFC PF_NFC #define AF_VSOCK PF_VSOCK #define AF_KCM PF_KCM +#define AF_QIPCRTR PF_QIPCRTR #define AF_MAX PF_MAX #ifndef SO_DEBUG -- 2.8.1