From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from sonata.ens-lyon.org (domu-toccata.ens-lyon.fr [140.77.166.138]) by sourceware.org (Postfix) with ESMTPS id 2D87D3858C53 for ; Wed, 21 Sep 2022 17:56:29 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org 2D87D3858C53 Authentication-Results: sourceware.org; dmarc=none (p=none dis=none) header.from=ens-lyon.org Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=bounce.ens-lyon.org Received: from localhost (localhost [127.0.0.1]) by sonata.ens-lyon.org (Postfix) with ESMTP id 2CF9E20150; Wed, 21 Sep 2022 19:56:27 +0200 (CEST) Received: from sonata.ens-lyon.org ([127.0.0.1]) by localhost (sonata.ens-lyon.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id ENSr8Huu15uW; Wed, 21 Sep 2022 19:56:27 +0200 (CEST) Received: from begin.home (lfbn-bor-1-376-208.w109-215.abo.wanadoo.fr [109.215.91.208]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange ECDHE (P-256) server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by sonata.ens-lyon.org (Postfix) with ESMTPSA id 9399720155; Wed, 21 Sep 2022 19:56:26 +0200 (CEST) Received: from samy by begin.home with local (Exim 4.96) (envelope-from ) id 1ob3xS-001pB7-04; Wed, 21 Sep 2022 19:56:26 +0200 From: Samuel Thibault To: libc-alpha@sourceware.org Cc: Damien Zammit , commit-hurd@gnu.org Subject: [hurd,commited 1/3] hurd: Add _IOT_ifrtreq to Date: Wed, 21 Sep 2022 19:56:23 +0200 Message-Id: <20220921175625.435041-2-samuel.thibault@ens-lyon.org> X-Mailer: git-send-email 2.35.1 In-Reply-To: <20220921175625.435041-1-samuel.thibault@ens-lyon.org> References: <20220921175625.435041-1-samuel.thibault@ens-lyon.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Spam-Status: No, score=-13.7 required=5.0 tests=BAYES_00,GIT_PATCH_0,JMQ_SPF_NEUTRAL,KAM_DMARC_STATUS,RCVD_IN_DNSWL_LOW,SPF_HELO_PASS,SPF_PASS,TXREP autolearn=ham autolearn_force=no version=3.4.6 X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on server2.sourceware.org List-Id: From: Damien Zammit So that we can use struct ifrtreq in ioctls. --- sysdeps/mach/hurd/net/route.h | 1 + 1 file changed, 1 insertion(+) diff --git a/sysdeps/mach/hurd/net/route.h b/sysdeps/mach/hurd/net/route.h index e7c276edf3..73abcbf253 100644 --- a/sysdeps/mach/hurd/net/route.h +++ b/sysdeps/mach/hurd/net/route.h @@ -80,6 +80,7 @@ typedef struct ifrtreq int rt_tos; int rt_class; } ifrtreq_t; +#define _IOT_ifrtreq _IOT (_IOTS(char), IF_NAMESIZE, _IOTS(int), 10, 0, 0) #define RTF_UP 0x0001 /* Route usable. */ -- 2.35.1