mirror of
https://github.com/curl/curl.git
synced 2026-08-26 05:23:33 +03:00
removed the socket argument from some functions that always passed in the
same socket and it was available from the passed-in struct anyway!
This commit is contained in:
parent
cc610f0d1f
commit
ae2ecfc5cb
4 changed files with 50 additions and 53 deletions
|
|
@ -28,11 +28,10 @@ CURLcode Curl_ftp_done(struct connectdata *conn);
|
|||
CURLcode Curl_ftp_connect(struct connectdata *conn);
|
||||
CURLcode Curl_ftp_disconnect(struct connectdata *conn);
|
||||
|
||||
size_t Curl_ftpsendf(int fd, struct connectdata *, const char *fmt, ...);
|
||||
size_t Curl_ftpsendf(struct connectdata *, const char *fmt, ...);
|
||||
|
||||
/* The kerberos stuff needs this: */
|
||||
int Curl_GetFTPResponse(int sockfd, char *buf,
|
||||
struct connectdata *conn,
|
||||
int Curl_GetFTPResponse(char *buf, struct connectdata *conn,
|
||||
int *ftpcode);
|
||||
|
||||
#endif
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue