Recent activity

Re: [Dnsmasq-discuss] [PATCH] Added a tail to .hmtl files 4 months ago

From Geert Stappers to ~stappers/dnsmasqmlpc

Nothing new,  a.k.a.  reminder


On Tue, Feb 11, 2025 at 09:07:17PM +0100, Geert Stappers wrote:
> Added a tail to .hmtl files
> 
> HTML-files `doc.html` and `setup.html` were missing closing tags.
> Also some empty lines removed.
> 
> Signed-off-by: Geert Stappers <stappers@stappers.nl>
> ---
>  doc.html   | 4 +---
>  setup.html | 2 ++

Re: git send mail help 4 months ago

From Geert Stappers to ~sircmpwn/sr.ht-discuss

On Tue, Feb 11, 2025 at 09:25:22PM +0100, Radical 3dd wrote:
> Hi everyone
> I tried the git send email tutorial and I did not receive
> the feedback email.

Mmmm

 
> Here the link of the patch
> https://lists.sr.ht/~sircmpwn/email-test-drive/patches/57409
> 
> Is there something I'm not doing correctly?

Could be   :-)

[PATCH] Added a tail to .hmtl files 4 months ago

From Geert Stappers to ~stappers/dnsmasqmlpc

HTML-files `doc.html` and `setup.html` were missing closing tags.
Also some empty lines removed.

Signed-off-by: Geert Stappers <stappers@stappers.nl>
---
 doc.html   | 4 +---
 setup.html | 2 ++
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/doc.html b/doc.html
index b167be7..fcbdfc1 100644
--- a/doc.html
+++ b/doc.html
@@ -95,7 +95,5 @@ a contribution towards my expenses, please use the donation button below.
[message trimmed]

Re: [Dnsmasq-discuss] [PATCH] Quieten DHCPv6 log when in static mode. 4 months ago

From Geert Stappers to ~stappers/dnsmasqmlpc

Hello Ian Dall,

(Cc to dnsmasq mailinglist and "patch collector")


On Sun, Mar 17, 2024 at 02:58:39PM +0100 to dnsmasq mailinglist:
> Quieten DHCPv6 log when in static mode.
> 
> When a DHCP range has a mode of "static" then the pool of dynamically
> allocated address is configured to be of zero size. DHCPv6 will still
> respond with statically defined addresses. In these cirumstances, not
> allocating an address is expected behaviour and not an error, so allow
> "no addresses available" messages to be quietened.

Re: [PATCH 1/1] Clean up some of the man page formatting. 5 months ago

From Geert Stappers to ~stappers/dnsmasqmlpc

On Thu, Jan 09, 2025 at 03:22:50PM +0100, Paul Donald wrote:
> Some writing was improved for clarity, especially regarding the use of
> tags which can be confusing and difficult to grasp.

Nice. Thanks.


I'll raise it at dnsmasq mailinglist. (Already done ;-)


Groeten
Geert Stappers

[PATCH] Count PXE packet 6 months ago

From Geert Stappers to ~stappers/dnsmasqmlpc

From: Dominik Derigs <dl6er@dl6er.de>

Signed-off-by: Dominik Derigs <dl6er@dl6er.de>
---
 src/rfc2131.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/src/rfc2131.c b/src/rfc2131.c
index f494a55..f99b8d5 100644
--- a/src/rfc2131.c
+++ b/src/rfc2131.c
@@ -934,6 +934,7 @@ size_t dhcp_reply(struct dhcp_context *context, char *iface_name, int int_index,
	  opt71.next = daemon->dhcp_opts;
	  do_encap_opts(&opt71, OPTION_VENDOR_CLASS_OPT, DHOPT_VENDOR_MATCH, mess, end, 0);
[message trimmed]

[PATCH] Minor typo fix, changed a "PCE" into "PXE" 6 months ago

From Geert Stappers to ~stappers/dnsmasqmlpc

---
 src/option.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/option.c b/src/option.c
index 92f3582..730adf4 100644
--- a/src/option.c
+++ b/src/option.c
@@ -452,7 +452,7 @@ static struct {
  { 'o', OPT_ORDER, NULL, gettext_noop("Use nameservers strictly in the order given in %s."), RESOLVFILE },
  { 'O', ARG_DUP, "<optspec>", gettext_noop("Specify options to be sent to DHCP clients."), NULL },
  { LOPT_FORCE, ARG_DUP, "<optspec>", gettext_noop("DHCP option sent even if the client does not request it."), NULL},
  { LOPT_PXE_OPT, ARG_DUP, "<optspec>", gettext_noop("DHCP option sent only to PCE clients."), NULL},
  { LOPT_PXE_OPT, ARG_DUP, "<optspec>", gettext_noop("DHCP option sent only to PXE clients."), NULL},
[message trimmed]

Sourcehut on Kubernetes 6 months ago

From Geert Stappers to ~sircmpwn/sr.ht-discuss

Previous-Subject: Re: Support Installing sourcehut Via Docker
In-Reply-To: <D611ZJUGR746.CT53FJ3UH9JQ@cmpwn.com>

On Mon, Dec 02, 2024 at 08:57:47AM +0100, Drew DeVault wrote:
> We will eventually provide official containers
> as part of our k8s work.

That will be awesome.

How to make it possible to reach that goal sooner?


Groeten

[PATCH] dhcp.c: Updated comment lines 8 months ago

From Geert Stappers to ~stappers/dnsmasqmlpc

Reflect outcome of discussion on mailinglist.
Removed reference to meanwhile removed KB, Knowledge Base, note.
---
 src/dhcp.c | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/src/dhcp.c b/src/dhcp.c
index b65facd..e34b292 100644
--- a/src/dhcp.c
+++ b/src/dhcp.c
@@ -824,8 +824,10 @@ int address_allocate(struct dhcp_context *context,
	    /* Addresses which end in .255 and .0 are broken in Windows even when using 
	       supernetting. ie dhcp-range=192.168.0.1,192.168.1.254,255,255,254.0
	       then 192.168.0.255 is a valid IP address, but not for Windows as it's
[message trimmed]