From e9c282ffb0796cd3cdcc44e54436b984a2d34c8f Mon Sep 17 00:00:00 2001 From: ericmenezesn@gmail.com Date: Wed, 6 Aug 2014 19:11:06 -0300 Subject: [PATCH] Início da implementação de conexão ssl. --- src/sslclient.cpp | 5 +++++ src/sslclient.h | 10 ++++++++++ 2 files changed, 15 insertions(+), 0 deletions(-) create mode 100644 src/sslclient.cpp create mode 100644 src/sslclient.h diff --git a/src/sslclient.cpp b/src/sslclient.cpp new file mode 100644 index 0000000..7bb6d48 --- /dev/null +++ b/src/sslclient.cpp @@ -0,0 +1,5 @@ +#include "sslclient.h" + +SslClient::SslClient() +{ +} diff --git a/src/sslclient.h b/src/sslclient.h new file mode 100644 index 0000000..b98d39b --- /dev/null +++ b/src/sslclient.h @@ -0,0 +1,10 @@ +#ifndef SSLCLIENT_H +#define SSLCLIENT_H + +class SslClient +{ +public: + SslClient(); +}; + +#endif // SSLCLIENT_H -- libgit2 0.21.2