network_ws.h 565 B

1234567891011121314151617181920212223
  1. /* This work is licensed under a Creative Commons CCZero 1.0 Universal License.
  2. * See http://creativecommons.org/publicdomain/zero/1.0/ for more information.
  3. *
  4. * Copyright 2016 (c) Fraunhofer IOSB (Author: Julius Pfrommer)
  5. */
  6. #ifndef UA_NETWORK_WS_H_
  7. #define UA_NETWORK_WS_H_
  8. #include <open62541/client.h>
  9. #include <open62541/plugin/log.h>
  10. #include <open62541/server.h>
  11. _UA_BEGIN_DECLS
  12. UA_ServerNetworkLayer UA_EXPORT
  13. UA_ServerNetworkLayerWS(UA_ConnectionConfig config, UA_UInt16 port, UA_Logger *logger);
  14. _UA_END_DECLS
  15. #endif /* UA_NETWORK_WS_H_ */