1
0
mirror of https://github.com/anope/anope.git synced 2026-07-06 11:33:13 +02:00

Improve the layout of types that inherit from another type.

This commit is contained in:
Sadie Powell
2024-01-23 15:28:23 +00:00
parent 398d674cf4
commit a6a0f6c447
232 changed files with 1648 additions and 798 deletions
+6 -3
View File
@@ -23,7 +23,8 @@
static SSL_CTX *server_ctx, *client_ctx;
class MySSLService : public SSLService
class MySSLService
: public SSLService
{
public:
MySSLService(Module *o, const Anope::string &n);
@@ -34,7 +35,8 @@ public:
void Init(Socket *s) override;
};
class SSLSocketIO : public SocketIO
class SSLSocketIO
: public SocketIO
{
public:
/* The SSL socket for this socket */
@@ -91,7 +93,8 @@ public:
class SSLModule;
static SSLModule *me;
class SSLModule : public Module
class SSLModule
: public Module
{
Anope::string certfile, keyfile;