Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
D
Dnsmasq
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Packages
Packages
List
Container Registry
Analytics
Analytics
CI / CD
Code Review
Insights
Issues
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nanahira
Dnsmasq
Commits
800c5cc1
Commit
800c5cc1
authored
Dec 15, 2014
by
Simon Kelley
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove floor on EDNS0 packet size with DNSSEC.
parent
857973e6
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
6 deletions
+5
-6
CHANGELOG
CHANGELOG
+5
-1
src/dnsmasq.c
src/dnsmasq.c
+0
-5
No files found.
CHANGELOG
View file @
800c5cc1
...
...
@@ -2,7 +2,11 @@ version 2.73
Fix crash at startup when an empty suffix is supplied to
--conf-dir, also trivial memory leak. Thanks to
Tomas Hozza for spotting this.
Remove floor of 4096 on advertised EDNS0 packet size when
DNSSEC in use, the original rationale for this has long gone.
Thanks to Anders Kaseorg for spotting this.
version 2.72
Add ra-advrouter mode, for RFC-3775 mobile IPv6 support.
...
...
src/dnsmasq.c
View file @
800c5cc1
...
...
@@ -87,11 +87,6 @@ int main (int argc, char **argv)
if
(
daemon
->
edns_pktsz
<
PACKETSZ
)
daemon
->
edns_pktsz
=
PACKETSZ
;
#ifdef HAVE_DNSSEC
/* Enforce min packet big enough for DNSSEC */
if
(
option_bool
(
OPT_DNSSEC_VALID
)
&&
daemon
->
edns_pktsz
<
EDNS_PKTSZ
)
daemon
->
edns_pktsz
=
EDNS_PKTSZ
;
#endif
daemon
->
packet_buff_sz
=
daemon
->
edns_pktsz
>
DNSMASQ_PACKETSZ
?
daemon
->
edns_pktsz
:
DNSMASQ_PACKETSZ
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment