testing_networklayers.h 530 B

12345678910111213141516171819202122
  1. /* This Source Code Form is subject to the terms of the Mozilla Public
  2. * License, v. 2.0. If a copy of the MPL was not distributed with this
  3. * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
  4. #ifndef TESTING_NETWORKLAYERS_H_
  5. #define TESTING_NETWORKLAYERS_H_
  6. #include "ua_server_config.h"
  7. #ifdef __cplusplus
  8. extern "C" {
  9. #endif
  10. /** @brief Create the TCP networklayer and listen to the specified port */
  11. UA_Connection createDummyConnection(void);
  12. #ifdef __cplusplus
  13. }
  14. #endif
  15. #endif /* TESTING_NETWORKLAYERS_H_ */