diff options
Diffstat (limited to 'lib/telnet.h')
-rw-r--r-- | lib/telnet.h | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/lib/telnet.h b/lib/telnet.h index 693abf3..ddb9e54 100644 --- a/lib/telnet.h +++ b/lib/telnet.h @@ -1,6 +1,5 @@ -#ifndef __TELNET_H -#define __TELNET_H - +#ifndef HEADER_CURL_TELNET_H +#define HEADER_CURL_TELNET_H /*************************************************************************** * _ _ ____ _ * Project ___| | | | _ \| | @@ -21,10 +20,10 @@ * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY * KIND, either express or implied. * - * $Id$ ***************************************************************************/ #ifndef CURL_DISABLE_TELNET -CURLcode Curl_telnet(struct connectdata *conn, bool *done); -CURLcode Curl_telnet_done(struct connectdata *conn, CURLcode, bool premature); -#endif +extern const struct Curl_handler Curl_handler_telnet; #endif + +#endif /* HEADER_CURL_TELNET_H */ + |