Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
ISC Open Source Projects
BIND
Commits
50f3977f
Commit
50f3977f
authored
Dec 18, 1998
by
Bob Halley
Browse files
nits
parent
8e93971d
Changes
1
Hide whitespace changes
Inline
Side-by-side
lib/isc/unix/socket.c
View file @
50f3977f
...
...
@@ -1691,7 +1691,7 @@ isc_result_t
isc_socket_send
(
isc_socket_t
*
sock
,
isc_region_t
*
region
,
isc_task_t
*
task
,
isc_taskaction_t
action
,
void
*
arg
)
{
return
isc_socket_sendto
(
sock
,
region
,
task
,
action
,
arg
,
NULL
,
0
);
return
(
isc_socket_sendto
(
sock
,
region
,
task
,
action
,
arg
,
NULL
,
0
)
)
;
}
isc_result_t
...
...
@@ -1705,6 +1705,8 @@ isc_socket_sendto(isc_socket_t *sock, isc_region_t *region,
isc_task_t
*
ntask
=
NULL
;
int
cc
;
REQUIRE
(
VALID_SOCKET
(
sock
));
manager
=
sock
->
manager
;
ev
=
(
isc_socketevent_t
*
)
isc_event_allocate
(
manager
->
mctx
,
sock
,
...
...
Write
Preview
Supports
Markdown
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