mirror of
https://github.com/curl/curl.git
synced 2026-07-23 16:47:15 +03:00
Martin Hedenfalk added sec_fflush_fd()
This commit is contained in:
parent
ad01481b28
commit
1dac7f4d05
2 changed files with 15 additions and 0 deletions
|
|
@ -272,6 +272,20 @@ sec_fflush(struct connectdata *conn, FILE *F)
|
|||
return 0;
|
||||
}
|
||||
|
||||
int
|
||||
sec_fflush_fd(struct connectdata *conn, int fd)
|
||||
{
|
||||
if(conn->data_prot != prot_clear) {
|
||||
if(conn->out_buffer.index > 0){
|
||||
sec_write(conn, fd,
|
||||
conn->out_buffer.data, conn->out_buffer.index);
|
||||
conn->out_buffer.index = 0;
|
||||
}
|
||||
sec_send(conn, fd, NULL, 0);
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
|
||||
int
|
||||
sec_write(struct connectdata *conn, int fd, char *buffer, int length)
|
||||
{
|
||||
|
|
|
|||
|
|
@ -94,6 +94,7 @@ void delete_ftp_command(void);
|
|||
|
||||
|
||||
int sec_fflush (struct connectdata *conn, FILE *);
|
||||
int sec_fflush_fd(struct connectdata *conn, int fd);
|
||||
int sec_fprintf (struct connectdata *, FILE *, const char *, ...);
|
||||
int sec_getc (struct connectdata *conn, FILE *);
|
||||
int sec_putc (struct connectdata *conn, int, FILE *);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue