| 521 | } |
| 522 | |
| 523 | err_t tcpConnect(void *arg, struct tcp_pcb *tpcb, err_t err) |
| 524 | { |
| 525 | TCP tcp = arg; |
| 526 | tcp->ready = !err; |
| 527 | tcpTrigger(tcp, err ? kTCPError : kTCPWritable); |
| 528 | return ERR_OK; |
| 529 | } |
| 530 | |
| 531 | void tcpError(void *arg, err_t err) |
| 532 | { |
nothing calls this directly
no test coverage detected