OnixS C++ ICE Binary Order Entry Handler 1.1.1
API Documentation
Loading...
Searching...
No Matches
SocketOption Struct Reference

Public Member Functions

 SocketOption () noexcept
 SocketOption (int optionName, const void *optionValue, int optionLength) noexcept

Public Attributes

int optname
const void * optval
int optlen

Detailed Description

Definition at line 58 of file Defines.h.

Constructor & Destructor Documentation

◆ SocketOption() [1/2]

SocketOption ( )
inlinenoexcept

Definition at line 59 of file Defines.h.

60 : optname(0), optval(nullptr), optlen(0) {}

◆ SocketOption() [2/2]

SocketOption ( int optionName,
const void * optionValue,
int optionLength )
inlinenoexcept

Definition at line 62 of file Defines.h.

63 : optname(optionName), optval(optionValue), optlen(optionLength) {}

Member Data Documentation

◆ optlen

int optlen

Definition at line 67 of file Defines.h.

◆ optname

int optname

Definition at line 65 of file Defines.h.

◆ optval

const void* optval

Definition at line 66 of file Defines.h.