Moved/Renamed Docker test dirs

This commit is contained in:
Joseph Henry 2015-11-09 19:37:19 -08:00
parent 134ad8ac21
commit 19f09e46fa
18 changed files with 3 additions and 3 deletions

BIN
docker-test/._.DS_Store Normal file

Binary file not shown.

Before

(image error) Size: 26 KiB

After

(image error) Size: 26 KiB

@ -928,12 +928,12 @@ err_t NetconEthernetTap::nc_poll(void* arg, struct tcp_pcb *tpcb)
*/
err_t NetconEthernetTap::nc_sent(void* arg, struct tcp_pcb *tpcb, u16_t len)
{
dwr(5, " nc_sent()\n");
//dwr(5, " nc_sent()\n");
Larg *l = (Larg*)arg;
if(len) {
l->conn->acked+=len;
//dwr("W = %d, A = %d\n", l->conn->written, l->conn->acked);
dwr("ACK = %d\n", len);
//dwr("ACK = %d\n", len);
l->tap->_phy.setNotifyReadable(l->conn->dataSock, true);
l->tap->_phy.whack();
}
@ -1356,7 +1356,7 @@ void NetconEthernetTap::handle_connect(PhySocket *sock, void **uptr, struct conn
void NetconEthernetTap::handle_write(TcpConnection *conn)
{
dwr(5, " handle_write()\n");
//dwr(5, " handle_write()\n");
float max = (float)TCP_SND_BUF;
int r;