Add missing include for TLSSocket

TCP and UDP sockets are automatically available when mbed.h is
included in an application.

This change lets the TLSSocket be used in the same way.
pull/8621/head
Marcus Chang 2018-11-01 13:32:37 -07:00
parent 1608fbbe54
commit 07eb6bd159
1 changed files with 1 additions and 0 deletions

View File

@ -40,6 +40,7 @@
#include "netsocket/UDPSocket.h"
#include "netsocket/TCPSocket.h"
#include "netsocket/TCPServer.h"
#include "netsocket/TLSSocket.h"
#endif