|
@@ -476,8 +476,11 @@ static UA_StatusCode ClientNetworkLayerTCP_connect(const UA_String endpointUrl,
|
|
#else
|
|
#else
|
|
UA_Int32 sock = 0;
|
|
UA_Int32 sock = 0;
|
|
#endif
|
|
#endif
|
|
-
|
|
|
|
|
|
+#ifdef _WIN32
|
|
|
|
+ if((layer->serversockfd = socket(PF_INET, SOCK_STREAM,0)) == INVALID_SOCKET) {
|
|
|
|
+#else
|
|
if((sock = socket(AF_INET, SOCK_STREAM, 0)) == -1) {
|
|
if((sock = socket(AF_INET, SOCK_STREAM, 0)) == -1) {
|
|
|
|
+#endif
|
|
printf("Could not create socket\n");
|
|
printf("Could not create socket\n");
|
|
return UA_STATUSCODE_BADINTERNALERROR;
|
|
return UA_STATUSCODE_BADINTERNALERROR;
|
|
}
|
|
}
|
|
@@ -515,7 +518,7 @@ static UA_StatusCode ClientNetworkLayerTCP_connect(const UA_String endpointUrl,
|
|
}
|
|
}
|
|
|
|
|
|
static void ClientNetworkLayerTCP_disconnect(ClientNetworkLayerTCP* handle) {
|
|
static void ClientNetworkLayerTCP_disconnect(ClientNetworkLayerTCP* handle) {
|
|
- close(handle->sockfd);
|
|
|
|
|
|
+ CLOSESOCKET(handle->sockfd);
|
|
}
|
|
}
|
|
|
|
|
|
static UA_StatusCode ClientNetworkLayerTCP_send(ClientNetworkLayerTCP *handle, UA_ByteStringArray gather_buf) {
|
|
static UA_StatusCode ClientNetworkLayerTCP_send(ClientNetworkLayerTCP *handle, UA_ByteStringArray gather_buf) {
|
|
@@ -531,7 +534,7 @@ static UA_StatusCode ClientNetworkLayerTCP_send(ClientNetworkLayerTCP *handle, U
|
|
while(nWritten < total_len) {
|
|
while(nWritten < total_len) {
|
|
UA_UInt32 n = 0;
|
|
UA_UInt32 n = 0;
|
|
do {
|
|
do {
|
|
- result = WSASend(*handle, buf, gather_buf.stringsSize ,
|
|
|
|
|
|
+ result = WSASend(handle->sockfd, buf, gather_buf.stringsSize ,
|
|
(LPDWORD)&n, 0, NULL, NULL);
|
|
(LPDWORD)&n, 0, NULL, NULL);
|
|
if(result != 0)
|
|
if(result != 0)
|
|
printf("Error WSASend, code: %d \n", WSAGetLastError());
|
|
printf("Error WSASend, code: %d \n", WSAGetLastError());
|