123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- #ifndef UA_CONNECTION_INTERNAL_H_
- #define UA_CONNECTION_INTERNAL_H_
- #ifdef __cplusplus
- extern "C" {
- #endif
- #include "ua_connection.h"
- UA_StatusCode
- UA_Connection_completeMessages(UA_Connection *connection, UA_ByteString * UA_RESTRICT message,
- UA_Boolean * UA_RESTRICT realloced);
- void UA_EXPORT UA_Connection_detachSecureChannel(UA_Connection *connection);
- void UA_EXPORT UA_Connection_attachSecureChannel(UA_Connection *connection, UA_SecureChannel *channel);
- UA_StatusCode UA_EXPORT UA_EndpointUrl_split_ptr(const char *endpointUrl, char *hostname, const char ** port, const char ** path);
- #ifdef __cplusplus
- }
- #endif
- #endif
|