summaryrefslogtreecommitdiffstats
path: root/ssl_common.h
diff options
context:
space:
mode:
authorAdriaan de Jong <dejong@fox-it.com>2011-06-24 15:05:28 +0200
committerDavid Sommerseth <davids@redhat.com>2011-10-19 22:31:45 +0200
commit9a160b796e1a40f9635231e5533ce40d46dba25f (patch)
tree2875011adeb2891019a694e83cdc6d0dd28d102b /ssl_common.h
parent253329a8588939da09867349c6a6aae62a21c667 (diff)
downloadopenvpn-9a160b796e1a40f9635231e5533ce40d46dba25f.tar.gz
openvpn-9a160b796e1a40f9635231e5533ce40d46dba25f.tar.xz
openvpn-9a160b796e1a40f9635231e5533ce40d46dba25f.zip
Refactored: Added stubs for new files
Signed-off-by: Adriaan de Jong <dejong@fox-it.com> Acked-by: Gert Doering <gert@greenie.muc.de> Signed-off-by: David Sommerseth <davids@redhat.com>
Diffstat (limited to 'ssl_common.h')
-rw-r--r--ssl_common.h41
1 files changed, 41 insertions, 0 deletions
diff --git a/ssl_common.h b/ssl_common.h
new file mode 100644
index 0000000..060e6c6
--- /dev/null
+++ b/ssl_common.h
@@ -0,0 +1,41 @@
+/*
+ * OpenVPN -- An application to securely tunnel IP networks
+ * over a single TCP/UDP port, with support for SSL/TLS-based
+ * session authentication and key exchange,
+ * packet encryption, packet authentication, and
+ * packet compression.
+ *
+ * Copyright (C) 2002-2010 OpenVPN Technologies, Inc. <sales@openvpn.net>
+ * Copyright (C) 2010 Fox Crypto B.V. <openvpn@fox-it.com>
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License version 2
+ * as published by the Free Software Foundation.
+ *
+ * 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 (see the file COPYING included with this
+ * distribution); if not, write to the Free Software Foundation, Inc.,
+ * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+ */
+
+/**
+ * @file Control Channel Common Data Structures
+ */
+
+#ifndef SSL_COMMON_H_
+#define SSL_COMMON_H_
+
+#include "session_id.h"
+#include "socket.h"
+#include "packet_id.h"
+#include "crypto.h"
+#include "options.h"
+
+#include "ssl_backend.h"
+
+#endif /* SSL_COMMON_H_ */