12345678910111213141516171819202122232425262728293031323334 |
- /* This work is licensed under a Creative Commons CCZero 1.0 Universal License.
- * See http://creativecommons.org/publicdomain/zero/1.0/ for more information.
- *
- * Copyright 2018 (c) Jose Cabral, fortiss GmbH
- */
- #ifdef UA_ARCHITECTURE_POSIX
- #include "ua_types.h"
- unsigned int UA_socket_set_blocking(UA_SOCKET sockfd){
- int opts = fcntl(sockfd, F_GETFL);
- if(opts < 0 || fcntl(sockfd, F_SETFL, opts & (~O_NONBLOCK)) < 0)
- return UA_STATUSCODE_BADINTERNALERROR;
- return UA_STATUSCODE_GOOD;
- }
- unsigned int UA_socket_set_nonblocking(UA_SOCKET sockfd){
- int opts = fcntl(sockfd, F_GETFL);
- if(opts < 0 || fcntl(sockfd, F_SETFL, opts | O_NONBLOCK) < 0)
- return UA_STATUSCODE_BADINTERNALERROR;
- return UA_STATUSCODE_GOOD;
- }
- void UA_initialize_architecture_network(void){
- return;
- }
- void UA_deinitialize_architecture_network(void){
- return;
- }
- #endif /* UA_ARCHITECTURE_POSIX */
|