Home | History | Annotate | Download | only in lib

Lines Matching refs:done

150 static CURLcode tftp_connect(struct connectdata *conn, bool *done);
153 static CURLcode tftp_do(struct connectdata *conn, bool *done);
157 static CURLcode tftp_multi_statemach(struct connectdata *conn, bool *done);
172 tftp_done, /* done */
679 * should be a good TFTP client and let the server know we're done */
814 * should be a good TFTP client and let the server know we're done */
929 /* done, free dynamically allocated pkt buffers */
946 static CURLcode tftp_connect(struct connectdata *conn, bool *done)
996 * reused or a custom local port was desired, this has already been done!
1020 *done = TRUE;
1029 * The done callback
1195 static CURLcode tftp_multi_statemach(struct connectdata *conn, bool *done)
1204 *done = FALSE;
1214 *done = (state->state == TFTP_STATE_FIN) ? TRUE : FALSE;
1215 if(*done)
1216 /* Tell curl we're done */
1236 *done = (state->state == TFTP_STATE_FIN) ? TRUE : FALSE;
1237 if(*done)
1238 /* Tell curl we're done */
1312 static CURLcode tftp_do(struct connectdata *conn, bool *done)
1317 *done = FALSE;
1320 result = tftp_connect(conn, done);
1329 result = tftp_perform(conn, done);