From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on server-vie001.gnuweeb.org X-Spam-Level: X-Spam-Status: No, score=-1.2 required=5.0 tests=ALL_TRUSTED,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,URIBL_ZEN_BLOCKED_OPENDNS autolearn=ham autolearn_force=no version=3.4.6 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=gnuweeb.org; s=new2025; t=1755360188; bh=dQ0KS1AiscE5upEFMjk5KNMuH2pICSVJyTFsaZrwCTM=; h=Date:From:To:Cc:Subject:Message-ID:References:MIME-Version: Content-Type:In-Reply-To:Message-ID:Date:From:Reply-To:Subject:To: Cc:In-Reply-To:References:Resent-Date:Resent-From:Resent-To: Resent-Cc:User-Agent:Content-Type:Content-Transfer-Encoding; b=rZYDvZuGqzKjJi0wuGT0LqUjAjP/v2sY4z2X7lo5xuTeTgZYk/sYkJ/agV9ZLZfzD D304y57kmoE5o3fCve0nM2JU53frV15tPOg9JJlJKURH7agrDC2HlbaHZZoW+hXap0 P8OGoJVg/JNDPoCAW6g7D1Uq2UF94Aq4kwuW7t6868SFDvKQAWGtG4kojK6T3Ar4/9 G3KUIrkbyDacliD2zKQo0eZyZn8NplE3B2KpEJCKSEOx1g1ekzSNJDjuuvdYaJJk2M al1c2b89qMi1aWatVbUmILY5T/y3DeQKimfwA6hvqYmIrhzWYQJVjGqk+suQeA6wcy 9eEbNDQmi3u+Q== Received: from linux.gnuweeb.org (unknown [182.253.126.185]) by server-vie001.gnuweeb.org (Postfix) with ESMTPSA id 93A5F31280CE; Sat, 16 Aug 2025 16:03:07 +0000 (UTC) Date: Sat, 16 Aug 2025 23:03:03 +0700 From: Ammar Faizi To: Ahmad Gani Cc: Alviro Iskandar Setiawan , GNU/Weeb Mailing List Subject: Re: [PATCH gwproxy v5 2/2] dnsparser: Add dns parser code Message-ID: <20250816160303.GA144043-ammarfaizi2@gnuweeb.org> References: <20250814044658.252579-1-reyuki@gnuweeb.org> <20250814044658.252579-3-reyuki@gnuweeb.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20250814044658.252579-3-reyuki@gnuweeb.org> X-Gw-Outgoing-Server-Hash: 01afd303c8b96d0c1d5e80aa96a4ee40ec69888f786fa24107c0862c0644af79 X-Gw-Message-ID: 2b141a8a38c67e46e0d8982b23104bd9a9ed16f518dbcd7789bf0f2fa7c03437 X-Gw-PM-Hash: 1f37f4917d33f8272d1a76ab87e785ef58c76cb7462f48d7e9b16219cbc25384 List-Id: On Thu, Aug 14, 2025 at 11:46:55AM +0700, Ahmad Gani wrote: > Introducing dns parser for better flexibility over the program flow, the > DNS protocol implementation is limited to standard query (OPCODE_QUERY). > > Also, Delegate creation of transaction id to the caller, It gives the > caller more flexibility in handling DNS requests. > > A single domain name lookup can have two responses: one for IPv4 and one > for IPv6. With this change, the caller may use the same txid for both > queries, making it easier to group related DNS responses. Now the question is: How do we integrate this? I see no Makefile changes. I guess it's still not covered by gwproxy build system. -- Ammar Faizi