| 525 | } |
| 526 | |
| 527 | GLOBALDEF int FtpSetCallback(const FtpCallbackOptions *opt, netbuf *nControl) { |
| 528 | nControl->idlecb = opt->cbFunc; |
| 529 | nControl->idlearg = opt->cbArg; |
| 530 | nControl->idletime.tv_sec = opt->idleTime / 1000; |
| 531 | nControl->idletime.tv_usec = (opt->idleTime % 1000) * 1000; |
| 532 | nControl->cbbytes = opt->bytesXferred; |
| 533 | return 1; |
| 534 | } |
| 535 | |
| 536 | GLOBALDEF int FtpClearCallback(netbuf *nControl) { |
| 537 | nControl->idlecb = nullptr; |
nothing calls this directly
no outgoing calls
no test coverage detected