X-Git-Url: http://git.joshuawise.com/netwatch.git/blobdiff_plain/15521f07dc09a276839c46168201d31ee1ae4a97..b767eafd8c60691d59d986b06828f6f0cb33b27a:/net/rfb.c diff --git a/net/rfb.c b/net/rfb.c index eac1bdd..eff9c41 100644 --- a/net/rfb.c +++ b/net/rfb.c @@ -169,7 +169,7 @@ static void send_fsm(struct tcp_pcb *pcb, struct rfb_state *state) { case SST_NEEDS_UPDATE: outputf("RFB send: sending header"); /* Send a header */ - state->frame_bytes = fb->curmode.xres * fb->curmode.yres * 3; /* XXX */ + state->frame_bytes = fb->curmode.xres * fb->curmode.yres * fb->curmode.bytestride; hdr.msgtype = 0; hdr.nrects = htons(1); hdr.xpos = htons(0); @@ -186,33 +186,46 @@ static void send_fsm(struct tcp_pcb *pcb, struct rfb_state *state) { /* FALL THROUGH */ case SST_SENDING: - left = state->frame_bytes - state->update_pos; - if (left > tcp_sndbuf(pcb)) { - sndlength = tcp_sndbuf(pcb); - } else { - sndlength = left; - } + while (1) { + left = state->frame_bytes - state->update_pos; - do { - err = tcp_write(pcb, fb->fbaddr + state->update_pos, sndlength, 0); - if (err == ERR_MEM) { - outputf("RFB: ERR_MEM sending %d", sndlength); - sndlength /= 2; + if (left == 0) { + state->send_state = SST_IDLE; + break; } - } while (err == ERR_MEM && sndlength > 1); - if (err == ERR_OK) { - outputf("RFB: sent %d", sndlength); - state->update_pos += sndlength; - } else { - outputf("RFB: send error %d", err); - } + if (left > tcp_mss(pcb)) { + sndlength = tcp_mss(pcb); + } else { + sndlength = left; + } - tcp_output(pcb); + do { + err = tcp_write(pcb, fb->fbaddr + state->update_pos, sndlength, 0); + if (err == ERR_MEM) { + outputf("RFB: ERR_MEM sending %d", sndlength); + sndlength /= 2; + } + } while (err == ERR_MEM && sndlength > 1); - if (state->update_pos == state->frame_bytes) { - state->send_state = SST_IDLE; + if (err == ERR_OK) { + outputf("RFB: attempting send %d", sndlength); + } else { + outputf("RFB: send error %d", err); + break; + } + + if (tcp_output(pcb) != ERR_OK) { + outputf("RFB: tcp_output has had enough"); + break; + } + + state->update_pos += sndlength; + + if (tcp_sndbuf(pcb) == 0) { + break; + } } break;