Host library for controlling a WiConnect enabled Wi-Fi module.

Dependents:   wiconnect-ota_example wiconnect-web_setup_example wiconnect-test-console wiconnect-tcp_server_example ... more

Embed: (wiki syntax)

« Back to documentation index

Types

Socket Types. More...

Data Structures

class  SocketInterface
 The provides an interface for creating TCP/UDP/TLS/HTTP client sockets. More...
class  WiconnectSocket
 Connection object to remote server. More...
class  WiconnectUdpServer
 UDP Server Listening socket. More...
struct  HttpSocketArgs
 Struct for hold HTTP socket configuration. More...

Enumerations

enum  SocketType {
  SOCKET_TYPE_UNKNOWN, SOCKET_TYPE_TCP, SOCKET_TYPE_TLS, SOCKET_TYPE_UDP,
  SOCKET_TYPE_HTTP, SOCKET_TYPE_UDPS, SOCKET_TYPE_GHM
}
 

Socket type.

More...
enum  HttpSocketType { SOCKET_HTTP_GET, SOCKET_HTTP_POST, SOCKET_HTTP_HEAD }
 

HTTP Socket sub-type.

More...

Detailed Description

Socket Types.


Enumeration Type Documentation

enum HttpSocketType

HTTP Socket sub-type.

Enumerator:
SOCKET_HTTP_GET 

HTTP GET Request socket type.

SOCKET_HTTP_POST 

HTTP POST Request socket type.

SOCKET_HTTP_HEAD 

HTTP HEAD Request socket type.

Definition at line 354 of file WiconnectTypes.h.

enum SocketType

Socket type.

Enumerator:
SOCKET_TYPE_UNKNOWN 

Socket type not known.

SOCKET_TYPE_TCP 

TCP Socket type.

SOCKET_TYPE_TLS 

TLS Socket type.

SOCKET_TYPE_UDP 

UDP Socket type.

SOCKET_TYPE_HTTP 

HTTP Socket type,.

SOCKET_TYPE_UDPS 

UDP Server Socket type.

SOCKET_TYPE_GHM 

goHACK.me message type

Definition at line 339 of file WiconnectTypes.h.