1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-09-29 03:17:53 -04:00
elinks/src/protocol/curl/ftpes.h

29 lines
518 B
C
Raw Permalink Normal View History

#ifndef EL__PROTOCOL_CURL_FTPES_H
#define EL__PROTOCOL_CURL_FTPES_H
2024-05-27 05:55:13 -04:00
#ifdef CONFIG_LIBCURL
#include <curl/curl.h>
#endif
#include "main/module.h"
#include "protocol/protocol.h"
#ifdef __cplusplus
extern "C" {
#endif
extern struct module ftpes_protocol_module;
#if defined(CONFIG_FTP) && defined(CONFIG_LIBCURL)
extern protocol_handler_T ftpes_protocol_handler;
2024-05-27 05:55:13 -04:00
void ftp_curl_handle_error(struct connection *conn, CURLcode res);
#else
#define ftpes_protocol_handler NULL
#endif
#ifdef __cplusplus
}
#endif
#endif