Skip to content

Commit 9ba18f0

Browse files
committed
Slightly increase DHCP/BOOTP init delay for improved reliability
1 parent 83fa058 commit 9ba18f0

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

source/__version.id

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.6.143
1+
2.6.145

source/rtl/ultibo/core/dhcp.pas

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ interface
8989
const
9090
{DHCP specific constants}
9191
{BOOTP/DHCP Constants}
92-
BOOTP_DELAY = 250; {Wait 250 ms before starting initial request (Previously 1000 ms)}
92+
BOOTP_DELAY = 500; {Wait 500 ms before starting initial request (Previously 1000 ms)}
9393
BOOTP_TIMEOUT = 4000; {Wait up to 4 seconds for a BOOTP reply (Previous 8 seconds)}
9494
BOOTP_RETRIES = 6; {Retry BOOTP requests up to 6 times}
9595

@@ -100,7 +100,7 @@ interface
100100
BOOTP_MIN_RETRIES = 1;
101101
BOOTP_MAX_RETRIES = 100;
102102

103-
DHCP_DELAY = 250; {Wait 250 ms before starting initial request (Previously 1000 ms)}
103+
DHCP_DELAY = 500; {Wait 500 ms before starting initial request (Previously 1000 ms)}
104104
DHCP_TIMEOUT = 4000; {Wait up to 4 seconds for a DHCP reply (Previous 8 seconds)}
105105
DHCP_RETRIES = 6; {Retry DHCP requests up to 6 times}
106106
DHCP_BROADCAST = False; {If True set the broadcast flag in the DHCP request}

source/rtl/ultibo/core/globalconst.pas

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,12 +52,12 @@ interface
5252
{Global constants}
5353
const
5454
{Version constants}
55-
ULTIBO_RELEASE_DATE = '29 October 2025';
55+
ULTIBO_RELEASE_DATE = '10 November 2025';
5656
ULTIBO_RELEASE_NAME = 'Beetroot';
57-
ULTIBO_RELEASE_VERSION = '2.6.143';
57+
ULTIBO_RELEASE_VERSION = '2.6.145';
5858
ULTIBO_RELEASE_VERSION_MAJOR = 2;
5959
ULTIBO_RELEASE_VERSION_MINOR = 6;
60-
ULTIBO_RELEASE_VERSION_REVISION = 143;
60+
ULTIBO_RELEASE_VERSION_REVISION = 145;
6161

6262
FPC_COMPILER_VERSION = {$I %FPCVERSION%}; {The version of FPC used to compile the RTL}
6363

0 commit comments

Comments
 (0)