From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.org/gmane.linux.lib.musl.general/10057 Path: news.gmane.org!not-for-mail From: Szabolcs Nagy Newsgroups: gmane.linux.lib.musl.general Subject: [PATCH 2/7] add SO_CNX_ADVICE to sys/socket.h, new in linux v4.6 Date: Thu, 26 May 2016 22:05:25 +0200 Message-ID: <92b73aff3ddac58bde3db70d5ebbae56f1390ab7.1464291783.git.nsz@port70.net> References: Reply-To: musl@lists.openwall.com NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: ger.gmane.org 1464293145 6185 80.91.229.3 (26 May 2016 20:05:45 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Thu, 26 May 2016 20:05:45 +0000 (UTC) To: musl@lists.openwall.com Original-X-From: musl-return-10070-gllmg-musl=m.gmane.org@lists.openwall.com Thu May 26 22:05:44 2016 Return-path: Envelope-to: gllmg-musl@m.gmane.org Original-Received: from mother.openwall.net ([195.42.179.200]) by plane.gmane.org with smtp (Exim 4.69) (envelope-from ) id 1b61XM-0006N8-2r for gllmg-musl@m.gmane.org; Thu, 26 May 2016 22:05:44 +0200 Original-Received: (qmail 13541 invoked by uid 550); 26 May 2016 20:05:42 -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 13401 invoked from network); 26 May 2016 20:05:37 -0000 Mail-Followup-To: musl@lists.openwall.com Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.24 (2015-08-30) Xref: news.gmane.org gmane.linux.lib.musl.general:10057 Archived-At: new socket option so application can give advice about routing path quality of connected udp sockets, added in linux commit a87cb3e48ee86d29868d3f59cfb9ce1a8fa63314 --- include/sys/socket.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/sys/socket.h b/include/sys/socket.h index fd65349..1904b74 100644 --- a/include/sys/socket.h +++ b/include/sys/socket.h @@ -222,6 +222,7 @@ struct linger #define SO_DETACH_BPF SO_DETACH_FILTER #define SO_ATTACH_REUSEPORT_CBPF 51 #define SO_ATTACH_REUSEPORT_EBPF 52 +#define SO_CNX_ADVICE 53 #ifndef SOL_SOCKET #define SOL_SOCKET 1 -- 2.8.1