00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022 #ifdef DOXYGEN
00023 #include <netlink/socket.h>
00024 NL_NAMESPACE_USE
00025 #endif
00026
00034 inline const string& Socket::hostTo() const {
00035
00036 return _hostTo;
00037 }
00038
00045 inline const string& Socket::hostFrom() const {
00046
00047 return _hostFrom;
00048 }
00049
00056 inline unsigned Socket::portTo() const {
00057
00058 return _portTo;
00059 }
00060
00067 inline unsigned Socket::portFrom() const {
00068
00069 return _portFrom;
00070 }
00071
00077 inline Protocol Socket::protocol() const {
00078
00079 return _protocol;
00080 }
00081
00087 inline IPVer Socket::ipVer() const {
00088
00089 return _ipVer;
00090 }
00091
00097 inline SocketType Socket::type() const {
00098
00099 return _type;
00100 }
00101
00110 inline unsigned Socket::listenQueue() const {
00111
00112 return _listenQueue;
00113 }
00114
00121 inline bool Socket::blocking() const {
00122
00123 return _blocking;
00124 }
00125
00126
00134 inline int Socket::socketHandler() const {
00135
00136 return _socketHandler;
00137 }
00138
00139