ACKme Logo WiConnect Host Library- API Reference Guide
 
 All Classes Namespaces Functions Variables Typedefs Enumerations Enumerator Groups Pages
Types

Socket Types. More...

Classes

class  wiconnect::SocketInterface
 The provides an interface for creating TCP/UDP/TLS/HTTP client sockets. A client socket connects to a remote server. More...
 
struct  wiconnect::HttpSocketArgs
 Struct for hold HTTP socket configuration. More...
 
class  wiconnect::WiconnectSocket
 Connection object to remote server. More...
 

Enumerations

enum  wiconnect::SocketType {
  wiconnect::SOCKET_TYPE_UNKNOWN,
  wiconnect::SOCKET_TYPE_TCP,
  wiconnect::SOCKET_TYPE_TLS,
  wiconnect::SOCKET_TYPE_UDP,
  wiconnect::SOCKET_TYPE_HTTP
}
 Socket type. More...
 
enum  wiconnect::HttpSocketType {
  wiconnect::SOCKET_HTTP_GET,
  wiconnect::SOCKET_HTTP_POST,
  wiconnect::SOCKET_HTTP_HEAD
}
 HTTP Socket sub-type. More...
 

Detailed Description

Socket Types.

Enumeration Type Documentation

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 337 of file WiconnectTypes.h.

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.

Definition at line 324 of file WiconnectTypes.h.