Skip to content

Commit f8db068

Browse files
Removing FIXME comment and adding empty line in the test file
1 parent 575f489 commit f8db068

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

connectivity/netsocket/source/TCPSocket.cpp

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,6 @@ nsapi_size_or_error_t TCPSocket::sendto(const SocketAddress &address, const void
176176
nsapi_size_or_error_t TCPSocket::sendto_control(const SocketAddress &address, const void *data, nsapi_size_t size,
177177
nsapi_msghdr_t *control, nsapi_size_t control_size)
178178
{
179-
// FIXME: Implement
180179
if (control) {
181180
return NSAPI_ERROR_UNSUPPORTED;
182181
}
@@ -242,7 +241,6 @@ nsapi_size_or_error_t TCPSocket::recvfrom(SocketAddress *address, void *data, ns
242241
nsapi_size_or_error_t TCPSocket::recvfrom_control(SocketAddress *address, void *data, nsapi_size_t size,
243242
nsapi_msghdr_t *control, nsapi_size_t control_size)
244243
{
245-
// FIXME: Implement
246244
if (control) {
247245
return NSAPI_ERROR_UNSUPPORTED;
248246
}

connectivity/netsocket/tests/UNITTESTS/netsocket/NetworkStack/test_MsgHeaderIterator.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,4 +102,4 @@ TEST_F(TestMsgHeaderIterator, wrong_member_len)
102102
p_buff.pkt_info_1.hdr.len = 0;
103103

104104
EXPECT_TRUE(it.next() == nullptr);
105-
}
105+
}

0 commit comments

Comments
 (0)