SecureHandshake.h 811 B

12345678910111213141516171819202122232425262728293031323334
  1. /*
  2. * Copyright (c) 2014, Oculus VR, Inc.
  3. * All rights reserved.
  4. *
  5. * This source code is licensed under the BSD-style license found in the
  6. * LICENSE file in the root directory of this source tree. An additional grant
  7. * of patent rights can be found in the PATENTS file in the same directory.
  8. *
  9. */
  10. /// \file
  11. ///
  12. #ifndef SECURE_HANDSHAKE_H
  13. #define SECURE_HANDSHAKE_H
  14. #include "NativeFeatureIncludes.h"
  15. #if LIBCAT_SECURITY==1
  16. // If building a RakNet DLL, be sure to tweak the CAT_EXPORT macro meaning
  17. #if !defined(_RAKNET_LIB) && defined(_RAKNET_DLL)
  18. # define CAT_BUILD_DLL
  19. #else
  20. # define CAT_NEUTER_EXPORT
  21. #endif
  22. // Include DependentExtensions in your path to include this
  23. #include "cat/AllTunnel.hpp"
  24. #endif // LIBCAT_SECURITY
  25. #endif // SECURE_HANDSHAKE_H
粤ICP备19079148号