Fix various stuff: that VC++ 5.0 chokes on:

1. Add *lots* of missing prototypes for static ssl functions.
2. VC++ doesn't understand the 'LL' suffix for 64 bits constants: change bn.org
3. Add a few missing prototypes in pem.org
Fix mk1mf.pl so it outputs a Makefile that doesn't choke Win95.
Fix mkdef.pl so it doesn't truncate longer names.
This commit is contained in:
Dr. Stephen Henson
1999-01-31 17:30:18 +00:00
parent d433f9014e
commit 9b3086fe38
19 changed files with 67 additions and 6 deletions

View File

@@ -1043,7 +1043,11 @@ char *arg;
void SSL_CTX_set_verify(ctx,mode,cb)
SSL_CTX *ctx;
int mode;
#ifndef NOPROTO
int (*cb)(int, X509_STORE_CTX *);
#else
int (*cb)();
#endif
{
ctx->default_verify_mode=mode;
ctx->default_verify_callback=cb;