modified code to use IOHandler functions instead of own ones
[NeonServV5.git] / src / ssl.h
diff --git a/src/ssl.h b/src/ssl.h
deleted file mode 100644 (file)
index 0af8ad0..0000000
--- a/src/ssl.h
+++ /dev/null
@@ -1,45 +0,0 @@
-/* ssl.h - NeonServ v5.5
- * Copyright (C) 2011-2012  Philipp Kreil (pk910)
- * 
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- * 
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU General Public License for more details.
- * 
- * You should have received a copy of the GNU General Public License 
- * along with this program. If not, see <http://www.gnu.org/licenses/>. 
- */
-#ifndef _ssl_h
-#define _ssl_h
-
-#include "main.h"
-
-struct ClientSocket;
-
-#ifdef HAVE_SSL
-#include <openssl/rand.h>
-#include <openssl/ssl.h>
-#include <openssl/err.h>
-
-struct SSLConnection {
-    SSL *sslHandle;
-    SSL_CTX *sslContext;
-};
-#else
-struct SSLConnection {
-    //just unused
-};
-#endif
-
-void ssl_init();
-void ssl_connect(struct ClientSocket *client);
-void ssl_disconnect(struct ClientSocket *client);
-int ssl_read(struct ClientSocket *client, char *buffer, int len);
-int ssl_write(struct ClientSocket *client, char *buffer, int len);
-
-#endif
\ No newline at end of file