Chromium Code Reviews| OLD | NEW |
|---|---|
| 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 Loading... | |
| 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 EVENT_TYPE(FTP_COMMAND_SENT) | |
|
eroman
2012/11/06 23:49:29
Can you add some comments on what the parameters l
Paweł Hajdan Jr.
2012/11/07 00:42:56
Done.
| |
| 1734 EVENT_TYPE(FTP_CONTROL_CONNECTION) | |
| 1735 EVENT_TYPE(FTP_DATA_CONNECTION) | |
| 1736 EVENT_TYPE(FTP_CONTROL_RESPONSE) | |
| OLD | NEW |