Richard Levitte [Sun, 17 Sep 2000 18:42:13 +0000 (18:42 +0000)]
Jeffrey Altman <jaltman@columbia.edu> sent me a patch that fixes the
problems with GetCursorInfo, but also adds network statistics and
performance statistics where available.
Richard Levitte [Sun, 17 Sep 2000 18:21:27 +0000 (18:21 +0000)]
Use sk_*_new_null() instead of sk_*_new(NULL), since that takes care
of complaints from the compiler about data pointers and function
pointers not being compatible with each other.
Richard Levitte [Sun, 17 Sep 2000 14:46:09 +0000 (14:46 +0000)]
Some platforms define NULL as ((void *)0). Unfortunately, a void*
can't be used as a function pointer according the the standards. Use
a 0 instead and there will be no trouble.
Richard Levitte [Sat, 16 Sep 2000 23:32:33 +0000 (23:32 +0000)]
Move text that isn't really descriptions of the functions in the page
to the NOTES section, and add references to the functions mentioned
(and perhaps a few more).
Richard Levitte [Fri, 15 Sep 2000 22:36:49 +0000 (22:36 +0000)]
Merged in the main trunk, did a 'make update', added a couple of
warnings in appropriate places about building a shared library from
the ENGINE source.
Richard Levitte [Fri, 15 Sep 2000 11:33:14 +0000 (11:33 +0000)]
Later, Jeffrey changed his mind. Apparently, GetCursorInfo exists but
doesn't quite work on WinNT 4 earlier than SP6. It works fine on
Windows 98 and Windows 2000.
I'm disabling it for now. What's really needed is some kind of check
to see if GetCursorInfo is safe to call, or alternatively, GetCursor
or GetCursorPos could be used, according to Jeffrey.
Richard Levitte [Thu, 14 Sep 2000 21:23:28 +0000 (21:23 +0000)]
In the name section, all the functions described shoud be enumerated.
This will also make it much simpler to generate softlinks name like
each function to man-pages containing the info.
Richard Levitte [Thu, 14 Sep 2000 20:24:56 +0000 (20:24 +0000)]
BIO_seed() and BIO_tell() were documented in two other documents,
which is redundant. They are now in their own document.
Also, in the name section, all the functions described shoud be
enumerated. This will also make it much simpler to generate softlinks
name like each function to man-pages containing the info.
This combines several manual pages provided by
Lutz Jaenicke <Lutz.Jaenicke@aet.TU-Cottbus.DE>,
various comments by Bodo to the lists and a bit
of source examination by me.
Richard Levitte [Thu, 14 Sep 2000 13:17:55 +0000 (13:17 +0000)]
Remove indentation in the NAME section. There's really no need to
indent there, especially since the pod2* scripts will regard that as
preformated text. In one case, indent a code section one step.
Richard Levitte [Thu, 14 Sep 2000 13:11:56 +0000 (13:11 +0000)]
Add a number of documentation files, mostly for SSL routines, but also
for a few BIO routines.
Submitted by Lutz Jaenicke <Lutz.Jaenicke@aet.TU-Cottbus.DE>
Richard Levitte [Thu, 14 Sep 2000 12:14:41 +0000 (12:14 +0000)]
Remove indentation in the NAME section. There's really no need to
indent there, especially since the pod2* scripts will regard that as
preformated text. In one case, indent a code section one step.
Richard Levitte [Wed, 13 Sep 2000 07:17:35 +0000 (07:17 +0000)]
3 changes:
- Make sure PCURSORINFO is defined even on systems that do not provide it.
- Change the reference to Peter Gutmann's paper.
- Make sure we don't walk the whole heap lists for performance reasons.
Jeffrey Altman suggests following Peter Gutmann's advice to keep it
to 50 heap entries per heap list.
Richard Levitte [Tue, 12 Sep 2000 08:12:52 +0000 (08:12 +0000)]
Better error checking for RSA and DSA signature and verification speed
tests. This was required to not get mysterious errors when they
wouldn't quite want to work.