Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
ISC Open Source Projects
BIND
Commits
d932ec87
Commit
d932ec87
authored
Aug 30, 2018
by
Witold Krecicki
Committed by
Evan Hunt
Aug 31, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Silence some warnings and errors
parent
0716902f
Pipeline
#4591
passed with stages
in 8 minutes and 9 seconds
Changes
4
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
5 additions
and
5 deletions
+5
-5
lib/bind9/check.c
lib/bind9/check.c
+1
-1
lib/isc/include/isc/socket.h
lib/isc/include/isc/socket.h
+2
-2
lib/isc/socket_api.c
lib/isc/socket_api.c
+1
-1
lib/isc/unix/socket.c
lib/isc/unix/socket.c
+1
-1
No files found.
lib/bind9/check.c
View file @
d932ec87
...
...
@@ -1871,7 +1871,7 @@ check_update_policy(const cfg_obj_t *policy, isc_log_t *logctx) {
typedef
struct
{
const
char
*
name
;
int
allowed
;
unsigned
int
allowed
;
}
optionstable
;
static
isc_result_t
...
...
lib/isc/include/isc/socket.h
View file @
d932ec87
...
...
@@ -231,7 +231,7 @@ enum {
* _USEMINMTU: Set the per packet IPV6_USE_MIN_MTU flag.
*/
typedef
enum
{
ISC_SOCKEVENTATTR_ATTACHED
=
0x
8
0000000U
,
/* internal */
ISC_SOCKEVENTATTR_ATTACHED
=
0x
1
0000000U
,
/* internal */
ISC_SOCKEVENTATTR_TRUNC
=
0x00800000U
,
/* public */
ISC_SOCKEVENTATTR_CTRUNC
=
0x00400000U
,
/* public */
ISC_SOCKEVENTATTR_TIMESTAMP
=
0x00200000U
,
/* public */
...
...
@@ -352,7 +352,7 @@ typedef struct isc_socketmethods {
void
(
*
detach
)(
isc_socket_t
**
socketp
);
isc_result_t
(
*
bind
)(
isc_socket_t
*
sock
,
const
isc_sockaddr_t
*
sockaddr
,
unsigned
in
t
options
);
isc_socket_options_
t
options
);
isc_result_t
(
*
sendto
)(
isc_socket_t
*
sock
,
isc_region_t
*
region
,
isc_task_t
*
task
,
isc_taskaction_t
action
,
void
*
arg
,
...
...
lib/isc/socket_api.c
View file @
d932ec87
...
...
@@ -134,7 +134,7 @@ isc_socket_detach(isc_socket_t **socketp) {
isc_result_t
isc_socket_bind
(
isc_socket_t
*
sock
,
const
isc_sockaddr_t
*
sockaddr
,
unsigned
in
t
options
)
isc_socket_options_
t
options
)
{
REQUIRE
(
ISCAPI_SOCKET_VALID
(
sock
));
...
...
lib/isc/unix/socket.c
View file @
d932ec87
...
...
@@ -543,7 +543,7 @@ isc__socket_permunix(const isc_sockaddr_t *sockaddr, uint32_t perm,
uint32_t
owner
,
uint32_t
group
);
isc_result_t
isc__socket_bind
(
isc_socket_t
*
sock
,
const
isc_sockaddr_t
*
sockaddr
,
unsigned
in
t
options
);
isc_socket_options_
t
options
);
isc_result_t
isc__socket_filter
(
isc_socket_t
*
sock
,
const
char
*
filter
);
isc_result_t
...
...
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