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
3 // found in the LICENSE file.
5 #include "net/udp/udp_net_log_parameters.h"
8 #include "base/string_number_conversions.h"
9 #include "base/values.h"
10 #include "net/base/ip_endpoint.h"
16 Value
* NetLogUDPDataTranferCallback(int byte_count
,
18 const IPEndPoint
* address
,
19 NetLog::LogLevel log_level
) {
20 DictionaryValue
* dict
= new DictionaryValue();
21 dict
->SetInteger("byte_count", byte_count
);
22 if (NetLog::IsLoggingBytes(log_level
))
23 dict
->SetString("hex_encoded_bytes", base::HexEncode(bytes
, byte_count
));
25 dict
->SetString("address", address
->ToString());
29 Value
* NetLogUDPConnectCallback(const IPEndPoint
* address
,
30 NetLog::LogLevel
/* log_level */) {
31 DictionaryValue
* dict
= new DictionaryValue();
32 dict
->SetString("address", address
->ToString());
38 NetLog::ParametersCallback
CreateNetLogUDPDataTranferCallback(
41 const IPEndPoint
* address
) {
43 return base::Bind(&NetLogUDPDataTranferCallback
, byte_count
, bytes
, address
);
46 NetLog::ParametersCallback
CreateNetLogUDPConnectCallback(
47 const IPEndPoint
* address
) {
49 return base::Bind(&NetLogUDPConnectCallback
, address
);