Chromium Code Reviews| Index: remoting/protocol/transport.h |
| diff --git a/remoting/protocol/transport.h b/remoting/protocol/transport.h |
| index e892404e5d0f71f5522a8d3a6b16429bcebf1226..df5811430f7bfbf6e0f3503797bf227f378a5de6 100644 |
| --- a/remoting/protocol/transport.h |
| +++ b/remoting/protocol/transport.h |
| @@ -52,6 +52,11 @@ struct TransportRoute { |
| RELAY, |
| }; |
| + TransportRoute(); |
| + ~TransportRoute(); |
| + |
| + std::string GetTypeString() const; |
|
simonmorris
2012/03/19 22:17:05
Could this expose a RouteType, instead of a string
Sergey Ulanov
2012/03/19 23:21:03
This is a struct and the type field is public. Thi
|
| + |
| RouteType type; |
| net::IPEndPoint remote_address; |
| net::IPEndPoint local_address; |