Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
D
dhcp
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
71
Issues
71
List
Boards
Labels
Service Desk
Milestones
Merge Requests
18
Merge Requests
18
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
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
ISC Open Source Projects
dhcp
Commits
e39b4193
Commit
e39b4193
authored
Oct 19, 2017
by
Thomas Markwalder
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[master] Added include of isc/util.h as needed
Merges in 46332.
parent
6bc5ad88
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
12 additions
and
3 deletions
+12
-3
RELNOTES
RELNOTES
+5
-0
client/dhclient.c
client/dhclient.c
+3
-2
common/execute.c
common/execute.c
+1
-0
common/parse.c
common/parse.c
+1
-0
common/socket.c
common/socket.c
+1
-0
omapip/connection.c
omapip/connection.c
+1
-1
No files found.
RELNOTES
View file @
e39b4193
...
...
@@ -1138,6 +1138,11 @@ dhcp-users@lists.isc.org.
for
pointing
out
the
error
of
our
ways
.
[
ISC
-
bugs
#
45780
]
-
Added
explicit
include
of
BIND9
isc
/
util
.
h
to
adapt
to
revisisions
in
BIND9
(
see
BIND9
ticket
#
46311
).
Prior
to
this
the
build
was
failing
with
implicit
function
declarations
errors
for
POST
()
and
INSIST
().
[
ISC
-
bugs
#
46332
]
Changes
since
4.2.0
(
new
features
)
-
If
a
client
renews
before
'dhcp-cache-threshold'
percent
of
its
lease
...
...
client/dhclient.c
View file @
e39b4193
...
...
@@ -31,14 +31,15 @@
*/
#include "dhcpd.h"
#include <isc/util.h>
#include <isc/file.h>
#include <dns/result.h>
#include <syslog.h>
#include <signal.h>
#include <errno.h>
#include <sys/time.h>
#include <sys/wait.h>
#include <limits.h>
#include <isc/file.h>
#include <dns/result.h>
TIME
default_lease_time
=
43200
;
/* 12 hours... */
TIME
max_lease_time
=
86400
;
/* 24 hours... */
...
...
common/execute.c
View file @
e39b4193
...
...
@@ -27,6 +27,7 @@
*/
#include "dhcpd.h"
#include <isc/util.h>
#include <omapip/omapip_p.h>
#include <sys/types.h>
#include <sys/wait.h>
...
...
common/parse.c
View file @
e39b4193
...
...
@@ -27,6 +27,7 @@
*/
#include "dhcpd.h"
#include <isc/util.h>
#include <syslog.h>
struct
collection
default_collection
=
{
NULL
,
"default"
,
NULL
};
...
...
common/socket.c
View file @
e39b4193
...
...
@@ -35,6 +35,7 @@
*/
#include "dhcpd.h"
#include <isc/util.h>
#include <errno.h>
#include <sys/ioctl.h>
#include <sys/uio.h>
...
...
omapip/connection.c
View file @
e39b4193
...
...
@@ -27,7 +27,7 @@
*/
#include "dhcpd.h"
#include <isc/util.h>
#include <omapip/omapip_p.h>
#include <arpa/inet.h>
#include <arpa/nameser.h>
...
...
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