diff options
author | Matt Johnston <matt@ucc.asn.au> | 2015-02-20 23:43:59 +0800 |
---|---|---|
committer | Matt Johnston <matt@ucc.asn.au> | 2015-02-20 23:43:59 +0800 |
commit | c53ca6ebc09bc94cb463d93beeb9640021190753 (patch) | |
tree | 3e27ed3bd820c088d76cc706a891e9d5feb3d511 /netio.c | |
parent | f04a3a2cfa6a2787e84b07d6d22cb1e9837ff6af (diff) |
avoid some warnings
--HG--
branch : fastopen
Diffstat (limited to 'netio.c')
-rw-r--r-- | netio.c | 14 |
1 files changed, 10 insertions, 4 deletions
@@ -274,7 +274,7 @@ void connect_set_writequeue(struct dropbear_progress_connection *c, struct Queue struct iovec * packet_queue_to_iovec(struct Queue *queue, int *ret_iov_count) { struct iovec *iov = NULL; struct Link *l; - unsigned int i, packet_type; + unsigned int i; int len; buffer *writebuf; @@ -288,10 +288,9 @@ struct iovec * packet_queue_to_iovec(struct Queue *queue, int *ret_iov_count) { for (l = queue->head, i = 0; l; l = l->link, i++) { writebuf = (buffer*)l->item; - packet_type = writebuf->data[writebuf->len-1]; len = writebuf->len - 1 - writebuf->pos; dropbear_assert(len > 0); - TRACE2(("write_packet writev #%d type %d len %d/%d", i, packet_type, + TRACE2(("write_packet writev #%d type %d len %d/%d", i, writebuf->data[writebuf->len-1], len, writebuf->len-1)) iov[i].iov_base = buf_getptr(writebuf, len); iov[i].iov_len = len; @@ -338,7 +337,14 @@ void set_listen_fast_open(int sock) { void set_sock_priority(int sock, enum dropbear_prio prio) { - int iptos_val = 0, so_prio_val = 0, rc; + int rc; +#ifdef IPTOS_LOWDELAY + int iptos_val = 0; +#endif +#ifdef SO_PRIORITY + int so_prio_val = 0; +#endif + /* Don't log ENOTSOCK errors so that this can harmlessly be called * on a client '-J' proxy pipe */ |