0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-09-28 19:58:53 +02:00

ircd: Move openssl.h way down here so it can use json.

This commit is contained in:
Jason Volk 2017-12-22 17:48:15 -07:00
parent 51ebd9c346
commit ef6152c0ef

View file

@ -142,6 +142,10 @@ namespace std
}
#endif
// OpenSSL
// Additional forward declarations in the extern namespace are introduced
// by ircd/openssl.h
///////////////////////////////////////////////////////////////////////////////
//
// libircd API
@ -193,7 +197,6 @@ namespace ircd
#include "date.h"
#include "timer.h"
#include "logger.h"
#include "openssl.h"
#include "nacl.h"
#include "rand.h"
#include "hash.h"
@ -211,6 +214,7 @@ namespace ircd
#include "parse.h"
#include "rfc1459.h"
#include "json/json.h"
#include "openssl.h"
#include "http.h"
#include "fmt.h"
#include "fs.h"