123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- #ifndef NETWORKLAYER_H_
- #define NETWORKLAYER_H_
- #include "opcua.h"
- #include "ua_transport.h"
- #include "ua_transport_binary.h"
- #include "ua_list.h"
- #ifdef MULTITHREADING
- #include <pthread.h> // pthreadcreate, pthread_t
- #endif
- #include <sys/select.h> // FD_ZERO, FD_SET
- #define NL_MAXCONNECTIONS_DEFAULT 10
- enum NL_UA_ENCODING_enum {
- NL_UA_ENCODING_BINARY = 0,
- NL_UA_ENCODING_XML = 1,
- };
- enum NL_CONNECTIONTYPE_enum {
- NL_CONNECTIONTYPE_TCPV4 = 0,
- NL_CONNECTIONTYPE_TCPV6 = 1,
- };
- typedef struct NL_Description {
- UA_Int32 encoding;
- UA_Int32 connectionType;
- UA_Int32 maxConnections;
- TL_Buffer localConf;
- } NL_Description;
- extern NL_Description NL_Description_TcpBinary;
- typedef struct NL_data {
- NL_Description* tld;
- UA_String endpointUrl;
- UA_list_List connections;
- fd_set readerHandles;
- int maxReaderHandle;
- } NL_data;
- struct NL_Connection;
- typedef void* (*NL_Reader)(struct NL_Connection *c);
- typedef struct NL_Connection {
- TL_Connection connection;
- NL_Reader reader;
- #ifdef MULTITHREADING
- pthread_t readerThreadHandle;
- #endif
- NL_data* networkLayer;
- } NL_Connection;
- NL_data* NL_init(NL_Description* tlDesc, UA_Int32 port);
- UA_Int32 NL_msgLoop(NL_data* nl, struct timeval* tv,UA_Int32 (*timeoutCallBack)(void*),void *arg);
- UA_Int32 NL_TCP_writer(struct TL_Connection const * c, UA_ByteString const * const * gather_buf, UA_UInt32 gather_len);
- #endif /* NETWORKLAYER_H_ */
|