Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(183)

Side by Side Diff: net/socket/socks_client_socket.cc

Issue 126303: Add a "LoadLog*" parameter to transactions, hostresolver, clientsocketpool. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: sync again Created 11 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « net/socket/socks5_client_socket_unittest.cc ('k') | net/socket/socks_client_socket_unittest.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "net/socket/socks_client_socket.h" 5 #include "net/socket/socks_client_socket.h"
6 6
7 #include "base/basictypes.h" 7 #include "base/basictypes.h"
8 #include "build/build_config.h" 8 #include "build/build_config.h"
9 #if defined(OS_WIN) 9 #if defined(OS_WIN)
10 #include <ws2tcpip.h> 10 #include <ws2tcpip.h>
(...skipping 178 matching lines...) Expand 10 before | Expand all | Expand 10 after
189 break; 189 break;
190 } 190 }
191 } while (rv != ERR_IO_PENDING && next_state_ != STATE_NONE); 191 } while (rv != ERR_IO_PENDING && next_state_ != STATE_NONE);
192 return rv; 192 return rv;
193 } 193 }
194 194
195 int SOCKSClientSocket::DoResolveHost() { 195 int SOCKSClientSocket::DoResolveHost() {
196 DCHECK_EQ(kSOCKS4Unresolved, socks_version_); 196 DCHECK_EQ(kSOCKS4Unresolved, socks_version_);
197 197
198 next_state_ = STATE_RESOLVE_HOST_COMPLETE; 198 next_state_ = STATE_RESOLVE_HOST_COMPLETE;
199 return host_resolver_.Resolve(host_request_info_, &addresses_, &io_callback_); 199 return host_resolver_.Resolve(
200 NULL, host_request_info_, &addresses_, &io_callback_);
200 } 201 }
201 202
202 int SOCKSClientSocket::DoResolveHostComplete(int result) { 203 int SOCKSClientSocket::DoResolveHostComplete(int result) {
203 DCHECK_EQ(kSOCKS4Unresolved, socks_version_); 204 DCHECK_EQ(kSOCKS4Unresolved, socks_version_);
204 205
205 bool ok = (result == OK); 206 bool ok = (result == OK);
206 next_state_ = STATE_HANDSHAKE_WRITE; 207 next_state_ = STATE_HANDSHAKE_WRITE;
207 if (ok) { 208 if (ok) {
208 DCHECK(addresses_.head()); 209 DCHECK(addresses_.head());
209 210
(...skipping 166 matching lines...) Expand 10 before | Expand all | Expand 10 after
376 377
377 #if defined(OS_LINUX) 378 #if defined(OS_LINUX)
378 int SOCKSClientSocket::GetPeerName(struct sockaddr* name, 379 int SOCKSClientSocket::GetPeerName(struct sockaddr* name,
379 socklen_t* namelen) { 380 socklen_t* namelen) {
380 return transport_->GetPeerName(name, namelen); 381 return transport_->GetPeerName(name, namelen);
381 } 382 }
382 #endif 383 #endif
383 384
384 } // namespace net 385 } // namespace net
385 386
OLDNEW
« no previous file with comments | « net/socket/socks5_client_socket_unittest.cc ('k') | net/socket/socks_client_socket_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698