Sync usage with man page.
[netbsd-mini2440.git] / external / bsd / fetch / dist / libfetch / fetch.3
blob1f3138f5ab31550980a26d718a6e5739fc25860b
1 .\"-
2 .\" Copyright (c) 1998-2004 Dag-Erling Coïdan Smørgrav
3 .\" All rights reserved.
4 .\"
5 .\" Redistribution and use in source and binary forms, with or without
6 .\" modification, are permitted provided that the following conditions
7 .\" are met:
8 .\" 1. Redistributions of source code must retain the above copyright
9 .\"    notice, this list of conditions and the following disclaimer.
10 .\" 2. Redistributions in binary form must reproduce the above copyright
11 .\"    notice, this list of conditions and the following disclaimer in the
12 .\"    documentation and/or other materials provided with the distribution.
13 .\"
14 .\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17 .\" ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24 .\" SUCH DAMAGE.
25 .\"
26 .\" $FreeBSD: fetch.3,v 1.64 2007/12/18 11:03:26 des Exp $
27 .\" $NetBSD: fetch.3,v 1.13 2009/10/15 12:36:57 joerg Exp $
28 .\"
29 .Dd February 4, 2009
30 .Dt FETCH 3
31 .Os
32 .Sh NAME
33 .Nm fetchMakeURL ,
34 .Nm fetchParseURL ,
35 .Nm fetchCopyURL ,
36 .Nm fetchFreeURL ,
37 .Nm fetchXGetURL ,
38 .Nm fetchGetURL ,
39 .Nm fetchPutURL ,
40 .Nm fetchStatURL ,
41 .Nm fetchListURL ,
42 .Nm fetchXGet ,
43 .Nm fetchGet ,
44 .Nm fetchPut ,
45 .Nm fetchStat ,
46 .Nm fetchList ,
47 .Nm fetchXGetFile ,
48 .Nm fetchGetFile ,
49 .Nm fetchPutFile ,
50 .Nm fetchStatFile ,
51 .Nm fetchListFile ,
52 .Nm fetchXGetHTTP ,
53 .Nm fetchGetHTTP ,
54 .Nm fetchPutHTTP ,
55 .Nm fetchStatHTTP ,
56 .Nm fetchListHTTP ,
57 .Nm fetchXGetFTP ,
58 .Nm fetchGetFTP ,
59 .Nm fetchPutFTP ,
60 .Nm fetchStatFTP ,
61 .Nm fetchListFTP
62 .Nm fetchInitURLList ,
63 .Nm fetchFreeURLList ,
64 .Nm fetchUnquotePath ,
65 .Nm fetchUnquoteFilename ,
66 .Nm fetchStringifyURL ,
67 .Nm fetch
68 .Nd file transfer functions
69 .Sh LIBRARY
70 .Lb libfetch
71 .Sh SYNOPSIS
72 .In stdio.h
73 .In fetch.h
74 .Ft struct url *
75 .Fn fetchMakeURL "const char *scheme" "const char *host" "int port" "const char *doc" "const char *user" "const char *pwd"
76 .Ft struct url *
77 .Fn fetchParseURL "const char *URL"
78 .Ft struct url *
79 .Fn fetchCopyURL "const struct url *u"
80 .Ft void
81 .Fn fetchFreeURL "struct url *u"
82 .Ft fetchIO *
83 .Fn fetchXGetURL "const char *URL" "struct url_stat *us" "const char *flags"
84 .Ft fetchIO *
85 .Fn fetchGetURL "const char *URL" "const char *flags"
86 .Ft fetchIO *
87 .Fn fetchPutURL "const char *URL" "const char *flags"
88 .Ft int
89 .Fn fetchStatURL "const char *URL" "struct url_stat *us" "const char *flags"
90 .Ft int
91 .Fn fetchListURL "struct url_list *list" "const char *URL" "const char *flags"
92 .Ft fetchIO *
93 .Fn fetchXGet "struct url *u" "struct url_stat *us" "const char *flags"
94 .Ft fetchIO *
95 .Fn fetchGet "struct url *u" "const char *flags"
96 .Ft fetchIO *
97 .Fn fetchPut "struct url *u" "const char *flags"
98 .Ft int
99 .Fn fetchStat "struct url *u" "struct url_stat *us" "const char *flags"
100 .Ft int
101 .Fn fetchList "struct url_list *list" "struct url *u" "const char *flags"
102 .Ft fetchIO *
103 .Fn fetchXGetFile "struct url *u" "struct url_stat *us" "const char *flags"
104 .Ft fetchIO *
105 .Fn fetchGetFile "struct url *u" "const char *flags"
106 .Ft fetchIO *
107 .Fn fetchPutFile "struct url *u" "const char *flags"
108 .Ft int
109 .Fn fetchStatFile "struct url *u" "struct url_stat *us" "const char *flags"
110 .Ft int
111 .Fn fetchListFile "struct url_list *list" "struct url *u" "const char *flags"
112 .Ft fetchIO *
113 .Fn fetchXGetHTTP "struct url *u" "struct url_stat *us" "const char *flags"
114 .Ft fetchIO *
115 .Fn fetchGetHTTP "struct url *u" "const char *flags"
116 .Ft fetchIO *
117 .Fn fetchPutHTTP "struct url *u" "const char *flags"
118 .Ft int
119 .Fn fetchStatHTTP "struct url *u" "struct url_stat *us" "const char *flags"
120 .Ft int
121 .Fn fetchListHTTP "struct url_list *list" "struct url *u" "const char *flags"
122 .Ft fetchIO *
123 .Fn fetchXGetFTP "struct url *u" "struct url_stat *us" "const char *flags"
124 .Ft fetchIO *
125 .Fn fetchGetFTP "struct url *u" "const char *flags"
126 .Ft fetchIO *
127 .Fn fetchPutFTP "struct url *u" "const char *flags"
128 .Ft int
129 .Fn fetchStatFTP "struct url *u" "struct url_stat *us" "const char *flags"
130 .Ft int
131 .Fn fetchListFTP "struct url_list *list" "struct url *u" "const char *flags"
132 .Ft void
133 .Fn fetchInitURLList "struct url_list *ul"
134 .Ft int
135 .Fn fetchAppendURLList "struct url_list *dst" "const struct url_list *src"
136 .Ft void
137 .Fn fetchFreeURLList "struct url_list *ul"
138 .Ft char *
139 .Fn fetchUnquotePath "struct url *u"
140 .Ft char *
141 .Fn fetchUnquoteFilename "struct url *u"
142 .Ft char *
143 .Fn fetchStringifyURL "const struct url *u"
144 .Sh DESCRIPTION
145 These functions implement a high-level library for retrieving and
146 uploading files using Uniform Resource Locators (URLs).
148 .Fn fetchParseURL
149 takes a URL in the form of a null-terminated string and splits it into
150 its components function according to the Common Internet Scheme Syntax
151 detailed in RFC 1738.
152 A regular expression which produces this syntax is:
153 .Bd -literal -offset indent
154 \*[Lt]scheme\*[Gt]:(//(\*[Lt]user\*[Gt](:\*[Lt]pwd\*[Gt])?@)?\*[Lt]host\*[Gt](:\*[Lt]port\*[Gt])?)?/(\*[Lt]document\*[Gt])?
157 If the URL does not seem to begin with a scheme name, it is assumed to be a local path.
158 Only absolute path names are accepted.
160 Note that some components of the URL are not necessarily relevant to
161 all URL schemes.
162 For instance, the file scheme only needs the
163 .Aq scheme
165 .Aq document
166 components.
167 .Fn fetchParseURL
168 quotes any unsafe character in the URL automatically.
169 This is not done by
170 .Fn fetchMakeURL .
171 .Fn fetchCopyURL
172 copies an existing
173 .Vt url
174 structure.
176 .Fn fetchMakeURL ,
177 .Fn fetchParseURL ,
179 .Fn fetchCopyURL
180 return a pointer to a
181 .Vt url
182 structure, which is defined as follows in
183 .In fetch.h :
184 .Bd -literal
185 #define URL_SCHEMELEN 16
186 #define URL_USERLEN 256
187 #define URL_PWDLEN 256
188 #define URL_HOSTLEN 255
190 struct url {
191     char         scheme[URL_SCHEMELEN + 1];
192     char         user[URL_USERLEN + 1];
193     char         pwd[URL_PWDLEN + 1];
194     char         host[URL_HOSTLEN + 1];
195     int          port;
196     char        *doc;
197     off_t        offset;
198     size_t       length;
199     time_t       last_modified;
203 The pointer returned by
204 .Fn fetchMakeURL ,
205 .Fn fetchCopyURL ,
207 .Fn fetchParseURL
208 should be freed using
209 .Fn fetchFreeURL .
210 The size of
211 .Vt struct URL
212 is not part of the ABI.
214 .Fn fetchXGetURL ,
215 .Fn fetchGetURL ,
217 .Fn fetchPutURL
218 constitute the recommended interface to the
219 .Nm fetch
220 library.
221 They examine the URL passed to them to determine the transfer
222 method, and call the appropriate lower-level functions to perform the
223 actual transfer.
224 .Fn fetchXGetURL
225 also returns the remote document's metadata in the
226 .Vt url_stat
227 structure pointed to by the
228 .Fa us
229 argument.
232 .Fa flags
233 argument is a string of characters which specify transfer options.
235 meaning of the individual flags is scheme-dependent, and is detailed
236 in the appropriate section below.
238 .Fn fetchStatURL
239 attempts to obtain the requested document's metadata and fill in the
240 structure pointed to by its second argument.
242 .Vt url_stat
243 structure is defined as follows in
244 .In fetch.h :
245 .Bd -literal
246 struct url_stat {
247     off_t        size;
248     time_t       atime;
249     time_t       mtime;
253 If the size could not be obtained from the server, the
254 .Fa size
255 field is set to \-1.
256 If the modification time could not be obtained from the server, the
257 .Fa mtime
258 field is set to the epoch.
259 If the access time could not be obtained from the server, the
260 .Fa atime
261 field is set to the modification time.
263 .Fn fetchListURL
264 attempts to list the contents of the directory pointed to by the URL provided.
265 The pattern can be a simple glob-like expression as hint.
266 Callers should not depend on the server to filter names.
267 If successful, it appends the list of entries to the
268 .Vt url_list
269 structure.
271 .Vt url_list
272 structure is defined as follows in
273 .In fetch.h :
274 .Bd -literal
275 struct url_list {
276     size_t      length;
277     size_t      alloc_size;
278     struct url  *urls;
282 The list should be initialized by calling
283 .Fn fetchInitURLList
284 and the entries be freed by calling
285 .Fn fetchFreeURLList .
286 The function
287 .Fn fetchAppendURLList
288 can be used to append one URL lists to another.
289 If the
290 .Ql c
291 (cache result) flag is specified, the library is allowed to internally
292 cache the result.
294 .Fn fetchStringifyURL
295 returns the URL as string.
296 .Fn fetchUnquotePath
297 returns the path name part of the URL with any quoting undone.
298 Query arguments and fragment identifiers are not included.
299 .Fn fetchUnquoteFilename
300 returns the last component of the path name as returned by
301 .Fn fetchUnquotePath .
302 .Fn fetchStringifyURL ,
303 .Fn fetchUnquotePath ,
305 .Fn fetchUnquoteFilename
306 return a string that should be deallocated with
307 .Fn free
308 after use.
310 .Fn fetchXGet ,
311 .Fn fetchGet ,
312 .Fn fetchPut ,
314 .Fn fetchStat
315 are similar to
316 .Fn fetchXGetURL ,
317 .Fn fetchGetURL ,
318 .Fn fetchPutURL ,
320 .Fn fetchStatURL ,
321 except that they expect a pre-parsed URL in the form of a pointer to
323 .Vt struct url
324 rather than a string.
326 All of the
327 .Fn fetchXGetXXX ,
328 .Fn fetchGetXXX ,
330 .Fn fetchPutXXX
331 functions return a pointer to a stream which can be used to read or
332 write data from or to the requested document, respectively.
333 Note that
334 although the implementation details of the individual access methods
335 vary, it can generally be assumed that a stream returned by one of the
336 .Fn fetchXGetXXX
338 .Fn fetchGetXXX
339 functions is read-only, and that a stream returned by one of the
340 .Fn fetchPutXXX
341 functions is write-only.
342 .Sh PROTOCOL INDEPENDENT FLAGS
343 If the
344 .Ql i
345 (if-modified-since) flag is specified, the library will try to fetch
346 the content only if it is newer than
347 .Va last_modified .
348 For HTTP an
349 .Li If-Modified-Since
350 HTTP header is sent.
351 For FTP a
352 .Li MTDM
353 command is sent first and compared locally.
354 For FILE the source file is compared.
355 .Sh FILE SCHEME
356 .Fn fetchXGetFile ,
357 .Fn fetchGetFile ,
359 .Fn fetchPutFile
360 provide access to documents which are files in a locally mounted file
361 system.
362 Only the
363 .Aq document
364 component of the URL is used.
366 .Fn fetchXGetFile
368 .Fn fetchGetFile
369 do not accept any flags.
371 .Fn fetchPutFile
372 accepts the
373 .Ql a
374 (append to file) flag.
375 If that flag is specified, the data written to
376 the stream returned by
377 .Fn fetchPutFile
378 will be appended to the previous contents of the file, instead of
379 replacing them.
380 .Sh FTP SCHEME
381 .Fn fetchXGetFTP ,
382 .Fn fetchGetFTP ,
384 .Fn fetchPutFTP
385 implement the FTP protocol as described in RFC 959.
387 By default
388 .Nm libfetch
389 will attempt to use passive mode first and only fallback to active mode
390 if the server reports a syntax error.
391 If the
392 .Ql a
393 (active) flag is specified, a passive connection is not tried and active mode
394 is used directly.
396 If the
397 .Ql l
398 (low) flag is specified, data sockets will be allocated in the low (or
399 default) port range instead of the high port range (see
400 .Xr ip 4 ) .
402 If the
403 .Ql d
404 (direct) flag is specified,
405 .Fn fetchXGetFTP ,
406 .Fn fetchGetFTP ,
408 .Fn fetchPutFTP
409 will use a direct connection even if a proxy server is defined.
411 If no user name or password is given, the
412 .Nm fetch
413 library will attempt an anonymous login, with user name "anonymous"
414 and password "anonymous@\*[Lt]hostname\*[Gt]".
415 .Sh HTTP SCHEME
417 .Fn fetchXGetHTTP ,
418 .Fn fetchGetHTTP ,
420 .Fn fetchPutHTTP
421 functions implement the HTTP/1.1 protocol.
422 With a little luck, there is
423 even a chance that they comply with RFC 2616 and RFC 2617.
425 If the
426 .Ql d
427 (direct) flag is specified,
428 .Fn fetchXGetHTTP ,
429 .Fn fetchGetHTTP ,
431 .Fn fetchPutHTTP
432 will use a direct connection even if a proxy server is defined.
434 Since there seems to be no good way of implementing the HTTP PUT
435 method in a manner consistent with the rest of the
436 .Nm fetch
437 library,
438 .Fn fetchPutHTTP
439 is currently unimplemented.
440 .Sh AUTHENTICATION
441 Apart from setting the appropriate environment variables and
442 specifying the user name and password in the URL or the
443 .Vt struct url ,
444 the calling program has the option of defining an authentication
445 function with the following prototype:
447 .Ft int
448 .Fn myAuthMethod "struct url *u"
450 The callback function should fill in the
451 .Fa user
453 .Fa pwd
454 fields in the provided
455 .Vt struct url
456 and return 0 on success, or any other value to indicate failure.
458 To register the authentication callback, simply set
459 .Va fetchAuthMethod
460 to point at it.
461 The callback will be used whenever a site requires authentication and
462 the appropriate environment variables are not set.
464 This interface is experimental and may be subject to change.
465 .Sh RETURN VALUES
466 .Fn fetchParseURL
467 returns a pointer to a
468 .Vt struct url
469 containing the individual components of the URL.
470 If it is
471 unable to allocate memory, or the URL is syntactically incorrect,
472 .Fn fetchParseURL
473 returns a
474 .Dv NULL
475 pointer.
478 .Fn fetchStat
479 functions return 0 on success and \-1 on failure.
481 All other functions return a stream pointer which may be used to
482 access the requested document, or
483 .Dv NULL
484 if an error occurred.
486 The following error codes are defined in
487 .In fetch.h :
488 .Bl -tag -width 18n
489 .It Bq Er FETCH_ABORT
490 Operation aborted
491 .It Bq Er FETCH_AUTH
492 Authentication failed
493 .It Bq Er FETCH_DOWN
494 Service unavailable
495 .It Bq Er FETCH_EXISTS
496 File exists
497 .It Bq Er FETCH_FULL
498 File system full
499 .It Bq Er FETCH_INFO
500 Informational response
501 .It Bq Er FETCH_MEMORY
502 Insufficient memory
503 .It Bq Er FETCH_MOVED
504 File has moved
505 .It Bq Er FETCH_NETWORK
506 Network error
507 .It Bq Er FETCH_OK
508 No error
509 .It Bq Er FETCH_PROTO
510 Protocol error
511 .It Bq Er FETCH_RESOLV
512 Resolver error
513 .It Bq Er FETCH_SERVER
514 Server error
515 .It Bq Er FETCH_TEMP
516 Temporary error
517 .It Bq Er FETCH_TIMEOUT
518 Operation timed out
519 .It Bq Er FETCH_UNAVAIL
520 File is not available
521 .It Bq Er FETCH_UNKNOWN
522 Unknown error
523 .It Bq Er FETCH_URL
524 Invalid URL
527 The accompanying error message includes a protocol-specific error code
528 and message, e.g.\& "File is not available (404 Not Found)"
529 .Sh ENVIRONMENT
530 .Bl -tag -width ".Ev FETCH_BIND_ADDRESS"
531 .It Ev FETCH_BIND_ADDRESS
532 Specifies a host name or IP address to which sockets used for outgoing
533 connections will be bound.
534 .It Ev FTP_LOGIN
535 Default FTP login if none was provided in the URL.
536 .It Ev FTP_PASSIVE_MODE
537 If set to anything but
538 .Ql no ,
539 forces the FTP code to use passive mode.
540 .It Ev FTP_PASSWORD
541 Default FTP password if the remote server requests one and none was
542 provided in the URL.
543 .It Ev FTP_PROXY
544 URL of the proxy to use for FTP requests.
545 The document part is ignored.
546 FTP and HTTP proxies are supported; if no scheme is specified, FTP is
547 assumed.
548 If the proxy is an FTP proxy,
549 .Nm libfetch
550 will send
551 .Ql user@host
552 as user name to the proxy, where
553 .Ql user
554 is the real user name, and
555 .Ql host
556 is the name of the FTP server.
558 If this variable is set to an empty string, no proxy will be used for
559 FTP requests, even if the
560 .Ev HTTP_PROXY
561 variable is set.
562 .It Ev ftp_proxy
563 Same as
564 .Ev FTP_PROXY ,
565 for compatibility.
566 .It Ev HTTP_AUTH
567 Specifies HTTP authorization parameters as a colon-separated list of
568 items.
569 The first and second item are the authorization scheme and realm
570 respectively; further items are scheme-dependent.
571 Currently, only basic authorization is supported.
573 Basic authorization requires two parameters: the user name and
574 password, in that order.
576 This variable is only used if the server requires authorization and
577 no user name or password was specified in the URL.
578 .It Ev HTTP_PROXY
579 URL of the proxy to use for HTTP requests.
580 The document part is ignored.
581 Only HTTP proxies are supported for HTTP requests.
582 If no port number is specified, the default is 3128.
584 Note that this proxy will also be used for FTP documents, unless the
585 .Ev FTP_PROXY
586 variable is set.
587 .It Ev http_proxy
588 Same as
589 .Ev HTTP_PROXY ,
590 for compatibility.
591 .It Ev HTTP_PROXY_AUTH
592 Specifies authorization parameters for the HTTP proxy in the same
593 format as the
594 .Ev HTTP_AUTH
595 variable.
597 This variable is used if and only if connected to an HTTP proxy, and
598 is ignored if a user and/or a password were specified in the proxy
599 URL.
600 .It Ev HTTP_REFERER
601 Specifies the referrer URL to use for HTTP requests.
602 If set to
603 .Dq auto ,
604 the document URL will be used as referrer URL.
605 .It Ev HTTP_USER_AGENT
606 Specifies the User-Agent string to use for HTTP requests.
607 This can be useful when working with HTTP origin or proxy servers that
608 differentiate between user agents.
609 .It Ev NETRC
610 Specifies a file to use instead of
611 .Pa ~/.netrc
612 to look up login names and passwords for FTP sites.
614 .Xr ftp 1
615 for a description of the file format.
616 This feature is experimental.
617 .It Ev NO_PROXY
618 Either a single asterisk, which disables the use of proxies
619 altogether, or a comma- or whitespace-separated list of hosts for
620 which proxies should not be used.
621 .It Ev no_proxy
622 Same as
623 .Ev NO_PROXY ,
624 for compatibility.
626 .Sh EXAMPLES
627 To access a proxy server on
628 .Pa proxy.example.com
629 port 8080, set the
630 .Ev HTTP_PROXY
631 environment variable in a manner similar to this:
633 .Dl HTTP_PROXY=http://proxy.example.com:8080
635 If the proxy server requires authentication, there are
636 two options available for passing the authentication data.
637 The first method is by using the proxy URL:
639 .Dl HTTP_PROXY=http://\*[Lt]user\*[Gt]:\*[Lt]pwd\*[Gt]@proxy.example.com:8080
641 The second method is by using the
642 .Ev HTTP_PROXY_AUTH
643 environment variable:
644 .Bd -literal -offset indent
645 HTTP_PROXY=http://proxy.example.com:8080
646 HTTP_PROXY_AUTH=basic:*:\*[Lt]user\*[Gt]:\*[Lt]pwd\*[Gt]
649 To disable the use of a proxy for an HTTP server running on the local
650 host, define
651 .Ev NO_PROXY
652 as follows:
653 .Bd -literal -offset indent
654 NO_PROXY=localhost,127.0.0.1
656 .Sh SEE ALSO
657 .\" .Xr fetch 1 ,
658 .\" .Xr ftpio 3 ,
659 .Xr ftp 1 ,
660 .Xr ip 4
662 .%A J. Postel
663 .%A J. K. Reynolds
664 .%D October 1985
665 .%B File Transfer Protocol
666 .%O RFC 959
669 .%A P. Deutsch
670 .%A A. Emtage
671 .%A A. Marine
672 .%D May 1994
673 .%T How to Use Anonymous FTP
674 .%O RFC 1635
677 .%A T. Berners-Lee
678 .%A L. Masinter
679 .%A M. McCahill
680 .%D December 1994
681 .%T Uniform Resource Locators (URL)
682 .%O RFC 1738
685 .%A R. Fielding
686 .%A J. Gettys
687 .%A J. Mogul
688 .%A H. Frystyk
689 .%A L. Masinter
690 .%A P. Leach
691 .%A T. Berners-Lee
692 .%D January 1999
693 .%B Hypertext Transfer Protocol -- HTTP/1.1
694 .%O RFC 2616
697 .%A J. Franks
698 .%A P. Hallam-Baker
699 .%A J. Hostetler
700 .%A S. Lawrence
701 .%A P. Leach
702 .%A A. Luotonen
703 .%A L. Stewart
704 .%D June 1999
705 .%B HTTP Authentication: Basic and Digest Access Authentication
706 .%O RFC 2617
708 .Sh HISTORY
710 .Nm fetch
711 library first appeared in
712 .Fx 3.0 .
713 .Sh AUTHORS
714 .An -nosplit
716 .Nm fetch
717 library was mostly written by
718 .An Dag-Erling Sm\(/orgrav Aq des@FreeBSD.org
719 with numerous suggestions from
720 .An Jordan K. Hubbard Aq jkh@FreeBSD.org ,
721 .An Eugene Skepner Aq eu@qub.com
722 and other
724 developers.
725 It replaces the older
726 .Nm ftpio
727 library written by
728 .An Poul-Henning Kamp Aq phk@FreeBSD.org
730 .An Jordan K. Hubbard Aq jkh@FreeBSD.org .
732 This manual page was written by
733 .An Dag-Erling Sm\(/orgrav Aq des@FreeBSD.org .
734 .Sh BUGS
735 Some parts of the library are not yet implemented.
736 The most notable
737 examples of this are
738 .Fn fetchPutHTTP
739 and FTP proxy support.
741 There is no way to select a proxy at run-time other than setting the
742 .Ev HTTP_PROXY
744 .Ev FTP_PROXY
745 environment variables as appropriate.
747 .Nm libfetch
748 does not understand or obey 305 (Use Proxy) replies.
750 Error numbers are unique only within a certain context; the error
751 codes used for FTP and HTTP overlap, as do those used for resolver and
752 system errors.
753 For instance, error code 202 means "Command not
754 implemented, superfluous at this site" in an FTP context and
755 "Accepted" in an HTTP context.
757 .Fn fetchStatFTP
758 does not check that the result of an MDTM command is a valid date.
760 The man page is incomplete, poorly written and produces badly
761 formatted text.
763 The error reporting mechanism is unsatisfactory.
765 Some parts of the code are not fully reentrant.