1234567891011121314151617181920212223242526 |
- /*
- * tcp_layer.h
- *
- * Created on: Jan 10, 2014
- * Author: opcua
- */
- #ifndef TCP_LAYER_H_
- #define TCP_LAYER_H_
- #include "UA_connection.h"
- #ifdef LINUX
- #include <sys/types.h>
- #include <sys/socket.h>
- #include <netinet/in.h>
- #include <sys/socketvar.h>
- #endif
- /*
- * returns the length of read bytes
- */
- #endif /* TCP_LAYER_H_ */
|