Cosmetic improvements.
[invirt/third/libt4.git] / rpc / connection.cc
index b29e136..4e49305 100644 (file)
@@ -31,7 +31,7 @@ connection::~connection() {
     VERIFY(!wpdu_.buf.size());
 }
 
-shared_ptr<connection> connection::to_dst(const sockaddr_in &dst, connection_delegate * delegate, int lossy) {
+shared_ptr<connection> connection::to_dst(const sockaddr_in & dst, connection_delegate * delegate, int lossy) {
     socket_t s = socket(AF_INET, SOCK_STREAM, 0);
     s.setsockopt(IPPROTO_TCP, TCP_NODELAY, (int)1);
     if (connect(s, (sockaddr*)&dst, sizeof(dst)) < 0) {