Home
last modified time | relevance | path

Searched refs:fetch_connect (Results 1 – 5 of 5) sorted by relevance

/netbsd-src/usr.bin/ftp/
H A Dssl.h29 #define FETCH struct fetch_connect
30 struct fetch_connect;
32 int fetch_printf(struct fetch_connect *, const char *fmt, ...)
34 int fetch_fileno(struct fetch_connect *);
35 int fetch_error(struct fetch_connect *);
36 int fetch_flush(struct fetch_connect *);
37 struct fetch_connect *fetch_open(const char *, const char *);
38 struct fetch_connect *fetch_fdopen(int, const char *);
39 int fetch_close(struct fetch_connect *);
40 size_t fetch_read(void *, size_t, size_t, struct fetch_connect *);
[all …]
H A Dssl.c71 struct fetch_connect { struct
97 fetch_writev(struct fetch_connect *conn, struct iovec *iov, int iovcnt) in fetch_writev() argument
163 fetch_write(const void *str, size_t len, struct fetch_connect *conn) in fetch_write()
176 fetch_printf(struct fetch_connect *conn, const char *fmt, ...) in fetch_printf()
198 fetch_fileno(struct fetch_connect *conn) in fetch_fileno()
205 fetch_error(struct fetch_connect *conn) in fetch_error()
212 fetch_clearerr(struct fetch_connect *conn) in fetch_clearerr()
219 fetch_flush(struct fetch_connect *conn) in fetch_flush()
236 struct fetch_connect * in fetch_open()
239 struct fetch_connect *con in fetch_open()
72 sdfetch_connect global() argument
73 buffetch_connect global() argument
[all...]
/netbsd-src/external/bsd/fetch/dist/libfetch/
H A Dcommon.h107 conn_t *fetch_connect(struct url *, int, int);
H A Dftp.c1065 conn = fetch_connect(purl, af, verbose); in ftp_connect()
1077 conn = fetch_connect(url, af, verbose); in ftp_connect()
H A Dcommon.c279 fetch_connect(struct url *url, int af, int verbose) in fetch_connect() function