tcp_layer.h 338 B

1234567891011121314151617181920212223242526
  1. /*
  2. * tcp_layer.h
  3. *
  4. * Created on: Jan 10, 2014
  5. * Author: opcua
  6. */
  7. #ifndef TCP_LAYER_H_
  8. #define TCP_LAYER_H_
  9. #include "UA_connection.h"
  10. #ifdef LINUX
  11. #include <sys/types.h>
  12. #include <sys/socket.h>
  13. #include <netinet/in.h>
  14. #include <sys/socketvar.h>
  15. #endif
  16. /*
  17. * returns the length of read bytes
  18. */
  19. #endif /* TCP_LAYER_H_ */