Changeset 4751 for source/ariba/SideportListener.h
- Timestamp:
- Jul 6, 2009, 8:14:42 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
source/ariba/SideportListener.h
r4738 r4751 125 125 * is set to unspecified. 126 126 * 127 * @param The remote node to query all links or unspecified127 * @param node The remote node to query all links or unspecified 128 128 * for all local starting links 129 129 * @return A vector of link ids. … … 136 136 * Is this node acting as a relay for us 137 137 * 138 * @param The node in question138 * @param node The node in question 139 139 * @return true, if this node is relaying for us 140 140 */ … … 144 144 * Is this node only reachable for us through a relay? 145 145 * 146 * @param The node in question146 * @param node The node in question 147 147 * @return true, if we reach this node only over a relay 148 148 */ 149 149 bool isRelayedNode(const NodeID& node); 150 151 152 /** 153 * Protocols for some layer, can be combined 154 */ 155 enum Protocol { 156 undefined = 0x0, 157 rfcomm = 0x1, 158 ipv4 = 0x2, 159 ipv6 = 0x4, 160 udp = 0x8, 161 tcp = 0x16, 162 }; 163 164 /** 165 * Through which protocol is a node reachable. 166 * 167 * @param node The node for which to return protocol reachability 168 * @return Combination of protocols 169 */ 170 Protocol getReachabilityProtocol(const NodeID& node); 150 171 151 172 protected:
Note:
See TracChangeset
for help on using the changeset viewer.