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

Side by Side Diff: net/udp/udp_socket_win.cc

Issue 10539094: NetLogEventParameter to Callback refactoring 1, (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Remove unneeded line Created 8 years, 6 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
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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/udp/udp_socket_win.h" 5 #include "net/udp/udp_socket_win.h"
6 6
7 #include <mstcpip.h> 7 #include <mstcpip.h>
8 8
9 #include "base/eintr_wrapper.h" 9 #include "base/eintr_wrapper.h"
10 #include "base/logging.h" 10 #include "base/logging.h"
11 #include "base/message_loop.h" 11 #include "base/message_loop.h"
12 #include "base/metrics/stats_counters.h" 12 #include "base/metrics/stats_counters.h"
13 #include "base/rand_util.h" 13 #include "base/rand_util.h"
14 #include "net/base/address_list_net_log_param.h"
15 #include "net/base/io_buffer.h" 14 #include "net/base/io_buffer.h"
16 #include "net/base/ip_endpoint.h" 15 #include "net/base/ip_endpoint.h"
17 #include "net/base/net_errors.h" 16 #include "net/base/net_errors.h"
18 #include "net/base/net_log.h" 17 #include "net/base/net_log.h"
19 #include "net/base/net_util.h" 18 #include "net/base/net_util.h"
20 #include "net/base/winsock_init.h" 19 #include "net/base/winsock_init.h"
21 #include "net/base/winsock_util.h" 20 #include "net/base/winsock_util.h"
22 #include "net/udp/udp_data_transfer_param.h" 21 #include "net/udp/udp_data_transfer_param.h"
23 22
24 namespace { 23 namespace {
(...skipping 436 matching lines...) Expand 10 before | Expand all | Expand 10 after
461 return DoBind(IPEndPoint(ip, 0)); 460 return DoBind(IPEndPoint(ip, 0));
462 } 461 }
463 462
464 bool UDPSocketWin::ReceiveAddressToIPEndpoint(IPEndPoint* address) const { 463 bool UDPSocketWin::ReceiveAddressToIPEndpoint(IPEndPoint* address) const {
465 const struct sockaddr* addr = 464 const struct sockaddr* addr =
466 reinterpret_cast<const struct sockaddr*>(&recv_addr_storage_); 465 reinterpret_cast<const struct sockaddr*>(&recv_addr_storage_);
467 return address->FromSockAddr(addr, recv_addr_len_); 466 return address->FromSockAddr(addr, recv_addr_len_);
468 } 467 }
469 468
470 } // namespace net 469 } // namespace net
OLDNEW
« net/socket/ssl_client_socket_nss.cc ('K') | « net/udp/udp_socket_libevent.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698