]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/transport.h
Remove unneeded headers from spanningtree. This was done to the rest of the source...
[user/henk/code/inspircd.git] / src / modules / transport.h
index 4d303502e7d5ba5e849a579c5970248a14f2b6ad..ba8e3973be88048cc95fd376e0b37539a7c4b943 100644 (file)
@@ -1,5 +1,18 @@
-#ifndef __SSL_CERT_H__
-#define __SSL_CERT_H__
+/*       +------------------------------------+
+ *       | Inspire Internet Relay Chat Daemon |
+ *       +------------------------------------+
+ *
+ *  InspIRCd: (C) 2002-2007 InspIRCd Development Team
+ * See: http://www.inspircd.org/wiki/index.php/Credits
+ *
+ * This program is free but copyrighted software; see
+ *            the file COPYING for details.
+ *
+ * ---------------------------------------------------
+ */
+
+#ifndef __TRANSPORT_H__
+#define __TRANSPORT_H__
 
 #include <map>
 #include <string>
@@ -149,6 +162,8 @@ class ssl_cert
        }
 };
 
+/** Used to represent a request to a transport provider module
+ */
 class ISHRequest : public Request
 {
  public:
@@ -159,6 +174,8 @@ class ISHRequest : public Request
        }
 };
 
+/** Used to represent a request to attach a cert to an InspSocket
+ */
 class InspSocketAttachCertRequest : public ISHRequest
 {
  public:
@@ -168,6 +185,8 @@ class InspSocketAttachCertRequest : public ISHRequest
        }
 };
 
+/** Used to check if a handshake is complete on an InspSocket yet
+ */
 class InspSocketHSCompleteRequest : public ISHRequest
 {
  public:
@@ -177,6 +196,8 @@ class InspSocketHSCompleteRequest : public ISHRequest
        }
 };
 
+/** Used to hook a transport provider to an InspSocket
+ */
 class InspSocketHookRequest : public ISHRequest
 {
  public:
@@ -186,6 +207,8 @@ class InspSocketHookRequest : public ISHRequest
        }
 };
 
+/** Used to unhook a transport provider from an InspSocket
+ */
 class InspSocketUnhookRequest : public ISHRequest
 {
  public: