diff options
author | Patrick Monnerat <Patrick.Monnerat@datasphere.ch> | 2007-10-12 13:36:37 +0000 |
---|---|---|
committer | Patrick Monnerat <Patrick.Monnerat@datasphere.ch> | 2007-10-12 13:36:37 +0000 |
commit | 07b6e7363d910ad4828376d568a2f19fd8d64661 (patch) | |
tree | 1b61554caff5805e38ee72f2151e80c0675610ae /lib/tftp.h | |
parent | 2741f97a69e79a8489e395f105bff0d92567bc21 (diff) | |
download | curl-07b6e7363d910ad4828376d568a2f19fd8d64661.tar.gz |
Added per-protocol callback static tables, replacing callback ptr storage
in the connectdata structure by a single handler table ptr.
Diffstat (limited to 'lib/tftp.h')
-rw-r--r-- | lib/tftp.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/lib/tftp.h b/lib/tftp.h index c7125417b..c9d2ef3c9 100644 --- a/lib/tftp.h +++ b/lib/tftp.h @@ -24,8 +24,6 @@ * $Id$ ***************************************************************************/ #ifndef CURL_DISABLE_TFTP -CURLcode Curl_tftp_connect(struct connectdata *conn, bool *done); -CURLcode Curl_tftp(struct connectdata *conn, bool *done); -CURLcode Curl_tftp_done(struct connectdata *conn, CURLcode, bool premature); +extern const struct Curl_handler Curl_handler_tftp; #endif #endif |