Home
last modified time | relevance | path

Searched refs:fetch_read (Results 1 – 7 of 7) sorted by relevance

/dflybsd-src/contrib/tnftp/src/
H A Dssl.h41 size_t fetch_read(void *, size_t, size_t, struct fetch_connect *);
H A Dssl.c405 fetch_read(void *ptr, size_t size, size_t nmemb, struct fetch_connect *conn) in fetch_read() function
519 len = fetch_read(&c, sizeof(c), 1, conn); in fetch_getln()
577 size_t rlen = fetch_read(&c, sizeof(c), 1, conn); in fetch_getline()
H A Dfetch.c1690 flen = fetch_read(xferbuf, sizeof(char), in fetch_url()
/dflybsd-src/lib/libfetch/
H A Dcommon.h125 ssize_t fetch_read(conn_t *, char *, size_t);
H A Dcommon.c429 if (fetch_read(conn, buf, 2) != 2) { in fetch_socks5_init()
472 if (!fetch_read(conn, buf, BUFF_SIZE)) { in fetch_socks5_init()
1334 fetch_read(conn_t *conn, char *buf, size_t len) in fetch_read() function
1433 len = fetch_read(conn, &c, 1); in fetch_getln()
H A Dhttp.c226 if ((nbytes = fetch_read(io->conn, io->buf, len)) == -1) { in http_fillbuf()
252 if ((nbytes = fetch_read(io->conn, io->buf, len)) == -1) { in http_fillbuf()
261 if (fetch_read(io->conn, &ch, 1) != 1 || ch != '\r' || in http_fillbuf()
262 fetch_read(io->conn, &ch, 1) != 1 || ch != '\n') in http_fillbuf()
H A Dftp.c515 r = fetch_read(io->dconn, buf, len); in ftp_readfn()