From mboxrd@z Thu Jan 1 00:00:00 1970 Received: by passt.top (Postfix, from userid 1000) id 5F1725A061C; Mon, 25 Nov 2024 10:00:08 +0100 (CET) From: Stefano Brivio To: passt-dev@passt.top Subject: [PATCH v2 2/3] dhcp: Introduce support for Rapid Commit (option 80, RFC 4039) Date: Mon, 25 Nov 2024 10:00:07 +0100 Message-ID: <20241125090008.132338-3-sbrivio@redhat.com> X-Mailer: git-send-email 2.43.0 In-Reply-To: <20241125090008.132338-1-sbrivio@redhat.com> References: <20241125090008.132338-1-sbrivio@redhat.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Message-ID-Hash: REUNBQOVSQN3I5SG7JLHYKWUXY3OZ4EK X-Message-ID-Hash: REUNBQOVSQN3I5SG7JLHYKWUXY3OZ4EK X-MailFrom: sbrivio@passt.top X-Mailman-Rule-Misses: dmarc-mitigation; no-senders; approved; emergency; loop; banned-address; member-moderation; nonmember-moderation; administrivia; implicit-dest; max-recipients; max-size; news-moderation; no-subject; digests; suspicious-header CC: David Gibson X-Mailman-Version: 3.3.8 Precedence: list List-Id: Development discussion and patches for passt Archived-At: Archived-At: List-Archive: List-Archive: List-Help: List-Owner: List-Post: List-Subscribe: List-Unsubscribe: I'm trying to speed up and simplify IP address acquisition in muvm. Signed-off-by: Stefano Brivio Reviewed-by: David Gibson --- dhcp.c | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/dhcp.c b/dhcp.c index 2fe4a4d..aa0ad96 100644 --- a/dhcp.c +++ b/dhcp.c @@ -342,8 +342,14 @@ int dhcp(const struct ctx *c, const struct pool *p) } if (opts[53].c[0] == DHCPDISCOVER) { - info("DHCP: offer to discover"); - opts[53].s[0] = DHCPOFFER; + if (opts[80].clen == -1) { + info("DHCP: offer to discover"); + opts[53].s[0] = DHCPOFFER; + } else { + info("DHCP: ack to discover (Rapid Commit)"); + opts[53].s[0] = DHCPACK; + opts[80].slen = 0; + } } else if (opts[53].c[0] == DHCPREQUEST || opts[53].clen <= 0) { info("%s: ack to request", (opts[53].clen <= 0) ? "DHCP" : "BOOTP"); -- 2.43.0