10 lines
276 B
C++
10 lines
276 B
C++
#include "types.h"
|
|
#include <openssl/ssl.h>
|
|
#ifndef PM_GLOBAL_VARS_H
|
|
#define PM_GLOBAL_VARS_H
|
|
extern void (*receive_callback)(std::vector<user>, std::string);
|
|
extern SSL_CTX *ctx_global;
|
|
extern SSL *ssl_global;
|
|
extern int sockfd_global;
|
|
extern EVP_PKEY *keypair_global;
|
|
#endif |