- Timestamp:
- Jul 20, 2006, 11:23:42 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/proxy/src/lib/network/handshake.h
r9342 r9343 3 3 * implementation of a network pipe. This node handles the handshake of two network nodes and exchanges informationas 4 4 * vial to the connection setup. 5 * 6 * the local node only writes in the localState variable. the remoteState variable will be written from the remote network node 7 * so don't write into it! 5 8 */ 6 9 … … 78 81 79 82 /** @returns if true the local client should reconnect to a proxy server from the proxy server list */ 80 inline bool redirect() { return this-> localState.redirectProxy;}83 inline bool redirect() { return this->remoteState.redirectProxy;} 81 84 /** @param flag: indicating if the client should be redirected */ 82 inline void setRedirect(bool flag) { this-> remoteState.redirectProxy = flag; }85 inline void setRedirect(bool flag) { this->localState.redirectProxy = flag; } 83 86 84 87 /** @param address: the address of the proxy server 1 if any */
Note: See TracChangeset
for help on using the changeset viewer.