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:
Daniel Stenberg 2001-09-28 09:15:19 +00:00
parent cc610f0d1f
commit ae2ecfc5cb
4 changed files with 50 additions and 53 deletions

View file

@ -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