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
emulab
emulab-devel
Commits
d3c6a6d5
Commit
d3c6a6d5
authored
Apr 10, 2002
by
Mike Hibler
Browse files
Bug: we were sending back zero-length UDP replies to commands that
should have no reply (e.g., "ready")
parent
e5fe1220
Changes
1
Show whitespace changes
Inline
Side-by-side
tmcd/tmcd.c
View file @
d3c6a6d5
...
...
@@ -2851,7 +2851,7 @@ client_writeback_done(int sock, struct sockaddr_in *client)
if
(
sock
!=
udpfd
)
error
(
"UDP reply out of sync!"
);
else
{
else
if
(
udpix
!=
0
)
{
err
=
sendto
(
udpfd
,
udpbuf
,
udpix
,
0
,
(
struct
sockaddr
*
)
client
,
sizeof
(
*
client
));
if
(
err
<
0
)
...
...
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