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

Side by Side Diff: net/base/net_log_event_type_list.h

Issue 11377007: FTP: add net-internals logging. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fixes Created 8 years, 1 month 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 | « no previous file | net/ftp/ftp_ctrl_response_buffer.h » ('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) 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 // NOTE: No header guards are used, since this file is intended to be expanded 5 // NOTE: No header guards are used, since this file is intended to be expanded
6 // directly into net_log.h. DO NOT include this file anywhere else. 6 // directly into net_log.h. DO NOT include this file anywhere else.
7 7
8 // In the event of a failure, a many end events will have a |net_error| 8 // In the event of a failure, a many end events will have a |net_error|
9 // parameter with the integer error code associated with the failure. Most 9 // parameter with the integer error code associated with the failure. Most
10 // of these parameters are not individually documented. 10 // of these parameters are not individually documented.
(...skipping 1707 matching lines...) Expand 10 before | Expand all | Expand 10 after
1718 // 1718 //
1719 // The END contains the following parameters: 1719 // The END contains the following parameters:
1720 // { 1720 // {
1721 // "ipv6_supported": <Boolean indicating whether or not the probe determined 1721 // "ipv6_supported": <Boolean indicating whether or not the probe determined
1722 // IPv6 may be supported>, 1722 // IPv6 may be supported>,
1723 // "ipv6_support_status": <String indicating the reason for that result>, 1723 // "ipv6_support_status": <String indicating the reason for that result>,
1724 // "os_error": <Platform dependent error code, associated with the result, 1724 // "os_error": <Platform dependent error code, associated with the result,
1725 // if any> 1725 // if any>
1726 // } 1726 // }
1727 EVENT_TYPE(IPV6_PROBE_RUNNING) 1727 EVENT_TYPE(IPV6_PROBE_RUNNING)
1728
1729 // -----------------------------------------------------------------------------
1730 // FTP events.
1731 // -----------------------------------------------------------------------------
1732
1733 // This event is created when an FTP command is sent. It contains following
1734 // parameters:
1735 // {
1736 // "command": <String - the command sent to remote server>
1737 // }
1738 EVENT_TYPE(FTP_COMMAND_SENT)
1739
1740 // This event is created when FTP control connection is made. It contains
1741 // following parameters:
1742 // {
1743 // "source_dependency": <id of log for control connection socket>
1744 // }
1745 EVENT_TYPE(FTP_CONTROL_CONNECTION)
1746
1747 // This event is created when FTP data connection is made. It contains
1748 // following parameters:
1749 // {
1750 // "source_dependency": <id of log for data connection socket>
1751 // }
1752 EVENT_TYPE(FTP_DATA_CONNECTION)
1753
1754 // This event is created when FTP control connection response is processed.
1755 // It contains following parameters:
1756 // {
1757 // "lines": <list of strings - each representing a line of the response>
1758 // "status_code": <numeric status code of the response>
1759 // }
1760 EVENT_TYPE(FTP_CONTROL_RESPONSE)
OLDNEW
« no previous file with comments | « no previous file | net/ftp/ftp_ctrl_response_buffer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698