mirror of
https://github.com/yarrick/iodine.git
synced 2024-11-22 06:41:26 +00:00
Fix warning, unused variable 'accepted_fragsize'
This commit is contained in:
parent
a7f491f808
commit
97b5e688ef
|
@ -2405,7 +2405,6 @@ handshake_set_fragsize(int dns_fd, int fragsize)
|
||||||
read = handshake_waitdns(dns_fd, in, sizeof(in), 'n', 'N', i+1);
|
read = handshake_waitdns(dns_fd, in, sizeof(in), 'n', 'N', i+1);
|
||||||
|
|
||||||
if (read > 0) {
|
if (read > 0) {
|
||||||
int accepted_fragsize;
|
|
||||||
|
|
||||||
if (strncmp("BADFRAG", in, 7) == 0) {
|
if (strncmp("BADFRAG", in, 7) == 0) {
|
||||||
fprintf(stderr, "Server rejected fragsize. Keeping default.");
|
fprintf(stderr, "Server rejected fragsize. Keeping default.");
|
||||||
|
@ -2415,7 +2414,8 @@ handshake_set_fragsize(int dns_fd, int fragsize)
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
accepted_fragsize = ((in[0] & 0xff) << 8) | (in[1] & 0xff);
|
/* The server returns the accepted fragsize:
|
||||||
|
accepted_fragsize = ((in[0] & 0xff) << 8) | (in[1] & 0xff) */
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue