Skip to content

Commit

Permalink
include reality
Browse files Browse the repository at this point in the history
  • Loading branch information
radkesvat committed May 10, 2024
1 parent c67c245 commit 5934d70
Showing 1 changed file with 14 additions and 3 deletions.
17 changes: 14 additions & 3 deletions core/static_tunnels.c
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,14 @@
#include "tunnels/server/socks/5/socks5_server.h"
#endif

#ifdef INCLUDE_REALITY_SERVER
#include "tunnels/server/reality/reality_server.h"
#endif

#ifdef INCLUDE_REALITY_CLIENT
#include "tunnels/client/reality/reality_client.h"
#endif

void loadStaticTunnelsIntoCore()
{
#ifdef INCLUDE_TCP_LISTENER
Expand Down Expand Up @@ -218,8 +226,11 @@ void loadStaticTunnelsIntoCore()
USING(Socks5Server);
#endif

#ifdef INCLUDE_REALITY_SERVER
USING(RealityServer);
#endif




#ifdef INCLUDE_REALITY_CLIENT
USING(RealityClient);
#endif
}

0 comments on commit 5934d70

Please sign in to comment.