Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | o Move more information from BUGS into SECURITY CONSIDERATIONS and | chris | 2002-06-15 | 1 | -50/+56 |
| | | | | | | | | condense the redundant bits. o Provide an example for using snprintf over sprintf. This may be supplemented with an asprintf() example soon. Sponsored by: DARPA, NAI Labs | ||||
* | Missed in earlier commit -- I did cvs commit src/lib/libc. Oops. | rwatson | 2002-06-14 | 8 | -118/+0 |
| | |||||
* | No POSIX.1e capabilities in the main tree yet. | rwatson | 2002-06-13 | 29 | -2995/+0 |
| | |||||
* | Include information on the dangers of passing a user-supplied string as | chris | 2002-06-13 | 1 | -0/+21 |
| | | | | | | | | a format string. This will later on be changed to a reference to the FreeBSD Security Architecture after it has been committed. PR: docs/39320 Sposnored by: DARPA, NAI Labs | ||||
* | Add the following functions: | brian | 2002-06-12 | 3 | -0/+45 |
| | | | | | | | | | | | | | | | | | | | | rad_request_authenticator() Returns the Request-Authenticator relevant to the most recently received RADIUS response. rad_server_secret() Returns the Shared Secret relevant to the most recently received RADIUS response. Neither of these functions should be necessary, however, the MS-MPPE-Recv-Key and MS-MPPE-Send-Key Microsoft Vendor Specific attributes are supplied in a mangled (encrypted) format, requiring this information to demangle. It's not clear whether these functions should be replaced with a rad_demangle() function or whether these attributes are one-offs. Sponsored by: Monzoon | ||||
* | Add a reference count to struct fetchconn so we don't prematurely close and | des | 2002-06-11 | 3 | -1/+22 |
| | | | | free a cached FTP connection. | ||||
* | Return HOSTNAME_INVALIDADDR when reverse lookup is fail. | ume | 2002-06-07 | 1 | -1/+1 |
| | | | | Submitted by: Sergey Zorin <sergey@cc.tpu.edu.ru> | ||||
* | Clarify the bit about realloc() and its `ptr' argument a bit. | keramida | 2002-06-06 | 1 | -2/+3 |
| | | | | | | | | Hopefully, now it is more clear that the memory referenced by the ptr argument of realloc(ptr,size) is freed and only the return value of realloc() points to a valid memory area upon successful completion. Submitted by: Martin Faxer <gmh003532@brfmasthugget.se> | ||||
* | Tidy up. | ru | 2002-06-06 | 1 | -10/+3 |
| | |||||
* | libfetch now depends on libcrypto and libssl. | ru | 2002-06-06 | 1 | -5/+6 |
| | |||||
* | Correct FreeBSD release of first appearance in the HISTORY section | sheldonh | 2002-06-06 | 1 | -1/+1 |
| | | | | (5.0 -> 4.6). | ||||
* | Make SSL support conditional on NOCRYPT. | des | 2002-06-05 | 4 | -0/+21 |
| | |||||
* | During buildworld, "regular" libraries are built before crypto stuff, so | des | 2002-06-05 | 1 | -2/+2 |
| | | | | | libfetch can't depend on lib{crypto,ssl}. Move the dependency to fetch until we can figure out how to fix this. | ||||
* | Add SSL support + slight cleanup. | des | 2002-06-05 | 4 | -20/+78 |
| | | | | Submitted by: Henry Whincup <henry@techiebod.com> (in principle) | ||||
* | Wrap everything in struct connection, and enforce timeouts everywhere | des | 2002-06-05 | 4 | -113/+204 |
| | | | | | (except for DNS operations). Always use funopen() for HTTP, to support both timeouts and SSL. | ||||
* | Add the necessary dependencies for SSL. | des | 2002-06-05 | 1 | -0/+2 |
| | |||||
* | Rename struct cookie to struct httpio to avoid confusion (it's not an HTTP | des | 2002-06-05 | 1 | -50/+50 |
| | | | | cookie) and increase symmetry with equivalent FTP code. | ||||
* | Add comments to struct cookie. | des | 2002-06-05 | 1 | -8/+8 |
| | |||||
* | Fix a bug I introduced in the chunk decoder in the previous commit.. | des | 2002-06-05 | 1 | -1/+1 |
| | |||||
* | First step towards SSL support: wrap connections in a 'struct connection' | des | 2002-06-05 | 4 | -196/+255 |
| | | | | | | | | | | which contains the socket descriptor, the input buffer and (yet unused) SSL state variables. This has the neat side effect of greatly improving reentrance (though we're not *quite* there yet) and opening the door to HTTP connection caching. This commit is inspired by email conversations with and patches from Henry Whincup <henry@techiebod.com> last fall. | ||||
* | Implement _Qp_sqrt. I've been unable to find a C program that gcc generates | jake | 2002-06-04 | 1 | -0/+14 |
| | | | | a call to this for, but apparently somehing in libstdc++ does. | ||||
* | Correct bswap64() prototype. | sobomax | 2002-06-03 | 1 | -1/+1 |
| | | | | | | Submitted by: glewis MFC after: 1 day (assuming that there is re's approval) | ||||
* | Fix typo in the BSD copyright: s/withough/without/ | schweikh | 2002-06-02 | 20 | -20/+20 |
| | | | | | Spotted and suggested by: des MFC after: 3 weeks | ||||
* | Add NCURSES_OSPEED replace command to MANFILTER | ache | 2002-06-02 | 2 | -2/+4 |
| | |||||
* | Correct a bunch of typos. Translators can ignore this commit. | schweikh | 2002-06-02 | 1 | -8/+8 |
| | | | | MFC after: 3 weeks | ||||
* | Remove a URL from the middle of the BSD copyright (a clicko? a pasto?). | schweikh | 2002-06-02 | 1 | -4/+4 |
| | | | | | | | | | Fix typos: s/evironment/environment s/cont/const s/_lonjmp/_longjmp MFC after: 3 weeks | ||||
* | Add mdoc bits for the new waitpid() WCONTINUED option, and | mike | 2002-06-01 | 1 | -0/+12 |
| | | | | WIFCONTINUED macro. | ||||
* | Grammar nit: treat "contents" as plural. | archie | 2002-05-31 | 1 | -1/+1 |
| | |||||
* | Fixed modes. | ru | 2002-05-31 | 25 | -25/+28 |
| | |||||
* | Grammar fix: "contents" is plural. | archie | 2002-05-31 | 1 | -2/+2 |
| | | | | MFC after: 1 day | ||||
* | Const poison. | phk | 2002-05-30 | 1 | -3/+5 |
| | | | | Partially submitted by: wollman | ||||
* | Fix syntax errors (labels with no statement following). | wollman | 2002-05-30 | 1 | -0/+2 |
| | |||||
* | Use correct printf format specifier to print unsigned longs. | wollman | 2002-05-30 | 1 | -1/+1 |
| | |||||
* | Avoid unintentional trigraph. | wollman | 2002-05-30 | 1 | -1/+1 |
| | |||||
* | Add missing newline at end of file. | wollman | 2002-05-30 | 1 | -1/+1 |
| | |||||
* | Missed one in previous commit. | des | 2002-05-30 | 1 | -2/+4 |
| | | | | Pointed out by: nectar | ||||
* | Add used include of <string.h>. | wollman | 2002-05-30 | 1 | -0/+1 |
| | |||||
* | Add libusb.so.0 from the FreeBSD services 4.5 DVD. libusb is now known as | obrien | 2002-05-30 | 2 | -4/+110 |
| | | | | | | libusbhid in RELENG_4. Requested by: joe | ||||
* | Add libusb.so.0 from the FreeBSD services 4.5 DVD. libusb is now known as | obrien | 2002-05-30 | 2 | -3/+111 |
| | | | | | | libusbhid in RELENG_4. Requested by: joe | ||||
* | mdoc(7) police: kill whitespace at EOL. | ru | 2002-05-30 | 1 | -1/+1 |
| | |||||
* | mdoc(7) police: polish markup. | ru | 2002-05-30 | 1 | -34/+68 |
| | |||||
* | mdoc(7) police: tidy up the markup. | ru | 2002-05-30 | 1 | -6/+15 |
| | |||||
* | mdoc(7) police: Tidy up the markup. | ru | 2002-05-30 | 1 | -29/+37 |
| | |||||
* | mdoc(7) police: kill hard sentence break. | ru | 2002-05-30 | 1 | -4/+4 |
| | |||||
* | mdoc(7) police: markup nits. | ru | 2002-05-30 | 1 | -43/+53 |
| | |||||
* | Check for defined(__i386__) instead of just defined(i386) since the compiler | alfred | 2002-05-30 | 1 | -1/+1 |
| | | | | will be updated to only define(__i386__) for ANSI cleanliness. | ||||
* | Since POSIX gives us plenary authority to define _t types, change | wollman | 2002-05-29 | 2 | -3/+3 |
| | | | | | | | __dlfunc_t to dlfunc_t to match what I have proposed to the Austin Group. (This also makes it easier for applications to store these values before they decide what to do with them, e.g., in a wrapper function.) | ||||
* | Add link dlopen(3) -> dlfunc(3). | wollman | 2002-05-29 | 1 | -1/+2 |
| | | | | Reminded by: mike | ||||
* | Reorganize dlfcn.h slightly to separate out XSI and BSD interfaces. | wollman | 2002-05-29 | 3 | -6/+61 |
| | | | | | | | | Add new dlfunc() interface, which is a version of dlsym() with a return type that can be cast to a function pointer without turning your computer into a frog. Reviewed by: freebsd-standards | ||||
* | mdoc(7) police: nits. | ru | 2002-05-29 | 1 | -1/+2 |
| |