You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
`Socket::open()` first returns `NSAPI_ERROR_OK` and then calls `NSAPI_ERROR_PARAMETER`.
494
+
`Socket::open()` first call (socket was not opened) returns `NSAPI_ERROR_OK` and nexts calls (socet was opened by previous call Socket::open()) return`NSAPI_ERROR_PARAMETER`.
495
495
496
496
### SOCKET_OPEN_CLOSE_REPEAT
497
497
498
498
**Description:**
499
499
500
-
Call `Socket::open()` followed by `Socket::close()` and then again `Socket::open()`. This allows you to reuse the same object.
500
+
Call `Socket::open()` followed by `Socket::close()` and then again `Socket::open()`. Should allows you to reuse the same object.
501
501
502
502
**Preconditions:**
503
503
@@ -511,7 +511,7 @@ Call `Socket::open()` followed by `Socket::close()` and then again `Socket::open
511
511
1. Call `Socket::close(stack)`.
512
512
1. Call `Socket::open(stack)`.
513
513
1. Call `Socket::close(stack)`.
514
-
1.Delete the socket.
514
+
1.Destroy the socket.
515
515
516
516
**Expected result:**
517
517
@@ -1155,13 +1155,13 @@ Test whether you tolerate an endpoint closing the connection.
1155
1155
1. Call `TCPSocket::recv(<buffer>, 30);`.
1156
1156
1. Repeat until `recv()` returns 0.
1157
1157
1. Call `TCPSocket::close();`.
1158
-
1.Delete the socket.
1158
+
1.Destroy the socket.
1159
1159
1160
1160
**Expected result:**
1161
1161
1162
1162
Connect returns `NSAPI_ERROR_OK`.
1163
1163
1164
-
The first `recv()` returns more that zero. Something between 10 and 30 bytes (datetime string).
1164
+
The first `recv()` returns datetime string length (It is between 10 and 30 bytes).
1165
1165
1166
1166
The second `recv()` returns zero because the endpoint closed the connection. `close()` returns `NSAPI_ERROR_OK`.
1167
1167
@@ -1185,7 +1185,7 @@ Test you can request setting valid TCP keepalive values.
1185
1185
**Postconditions:**
1186
1186
1187
1187
1. Call `TCPSocket::close();`.
1188
-
1.Delete the socket.
1188
+
1.Destroy the socket.
1189
1189
1190
1190
**Expected result:**
1191
1191
@@ -1257,11 +1257,11 @@ Make an HTTP request to a closed socket.
1257
1257
1258
1258
### TLSSOCKET_SEND_REPEAT
1259
1259
1260
-
**Description:** Run `SOCKET_SEND_REPEATÂ` for TLSSOCKET by using port number 2009.
1260
+
**Description:** Run `SOCKET_SEND_REPEAT` for TLSSOCKET by using port number 2009.
1261
1261
1262
1262
### TLSSOCKET_SEND_TIMEOUT
1263
1263
1264
-
**Description:** Run `SOCKET_SEND_TIMEOUTÂ` for TLSSOCKET by using port number 2009.
1264
+
**Description:** Run `SOCKET_SEND_TIMEOUT` for TLSSOCKET by using port number 2009.
1265
1265
1266
1266
### TLSSOCKET_SEND_UNCONNECTED
1267
1267
@@ -1287,11 +1287,11 @@ Make an HTTP request to an unconnected socket.
1287
1287
1288
1288
### TLSSOCKET_ECHOTEST
1289
1289
1290
-
**Description:** Run `SOCKET_ECHOTESTÂ` for TLSSOCKET by using port number 2007.
1290
+
**Description:** Run `SOCKET_ECHOTEST` for TLSSOCKET by using port number 2007.
1291
1291
1292
1292
### TLSSOCKET_ECHOTEST_NONBLOCK
1293
1293
1294
-
**Description:** Run `SOCKET_ECHOTEST_NONBLOCKÂ` for TLSSOCKET by using port number 2007.
1294
+
**Description:** Run `SOCKET_ECHOTEST_NONBLOCK` for TLSSOCKET by using port number 2007.
1295
1295
1296
1296
### TLSSOCKET_ENDPOINT_CLOSE
1297
1297
@@ -1322,7 +1322,7 @@ Verify TLS Socket fails to connect without a certificate.
1322
1322
1323
1323
**Description:**
1324
1324
1325
-
Run `TCPSOCKET_RECV_TIMEOUTÂ` for TLSSOCKET by using port number 2007.
1325
+
Run `TCPSOCKET_RECV_TIMEOUT` for TLSSOCKET by using port number 2007.
0 commit comments