summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar mrcsys2006-04-14 14:44:40 +0000
committerGravatar mrcsys2006-04-14 14:44:40 +0000
commitcfe2fbdfe311652a8e07079e9c8116e6fd556e16 (patch)
treeb48c53b551207fa54f0c2408ee8059b4e1c27fa8
parent404c9eac88a1c493e92a9020ae6add6610417875 (diff)
downloadcsoap-cfe2fbdfe311652a8e07079e9c8116e6fd556e16.tar.gz
csoap-cfe2fbdfe311652a8e07079e9c8116e6fd556e16.tar.bz2
renamed function at heiko's request
-rw-r--r--nanohttp/nanohttp-ssl.c4
-rw-r--r--nanohttp/nanohttp-ssl.h4
2 files changed, 4 insertions, 4 deletions
diff --git a/nanohttp/nanohttp-ssl.c b/nanohttp/nanohttp-ssl.c
index 9c6f19b..3acb3c8 100644
--- a/nanohttp/nanohttp-ssl.c
+++ b/nanohttp/nanohttp-ssl.c
@@ -1,5 +1,5 @@
/******************************************************************
-* $Id: nanohttp-ssl.c,v 1.22 2006/04/13 20:00:32 mrcsys Exp $
+* $Id: nanohttp-ssl.c,v 1.23 2006/04/14 14:44:40 mrcsys Exp $
*
* CSOAP Project: A http client/server library in C
* Copyright (C) 2001-2005 Rochester Institute of Technology
@@ -170,7 +170,7 @@ verify_sn (X509 * cert, int who, int nid, char *str)
}
void
-set_user_verify( int func(X509 * cert) ){
+hssl_set_user_verify( int func(X509 * cert) ){
user_verify = func;
}
diff --git a/nanohttp/nanohttp-ssl.h b/nanohttp/nanohttp-ssl.h
index 82758d0..86b61cd 100644
--- a/nanohttp/nanohttp-ssl.h
+++ b/nanohttp/nanohttp-ssl.h
@@ -1,5 +1,5 @@
/******************************************************************
-* $Id: nanohttp-ssl.h,v 1.14 2006/04/13 20:00:32 mrcsys Exp $
+* $Id: nanohttp-ssl.h,v 1.15 2006/04/14 14:44:40 mrcsys Exp $
*
* CSOAP Project: A http client/server library in C
* Copyright (C) 2001-2005 Rochester Institute of Technology
@@ -81,7 +81,7 @@ int verify_sn(X509 * cert, int who, int nid, char *str);
/*
* This function MUST be implemented by user client/server code somewhere
*/
-void set_user_verify( int func(X509 * cert) );
+void hssl_set_user_verify( int func(X509 * cert) );
static int simple_user_verify(X509 * cert);