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 #include "net/quic/quic_utils.h" | 5 #include "net/quic/quic_utils.h" |
6 | 6 |
7 #include <ctype.h> | 7 #include <ctype.h> |
8 | 8 |
9 #include "base/logging.h" | 9 #include "base/logging.h" |
10 #include "base/port.h" | 10 #include "base/port.h" |
(...skipping 163 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
174 RETURN_STRING_LITERAL(QUIC_TOO_MANY_OPEN_STREAMS); | 174 RETURN_STRING_LITERAL(QUIC_TOO_MANY_OPEN_STREAMS); |
175 RETURN_STRING_LITERAL(QUIC_PUBLIC_RESET); | 175 RETURN_STRING_LITERAL(QUIC_PUBLIC_RESET); |
176 RETURN_STRING_LITERAL(QUIC_INVALID_VERSION); | 176 RETURN_STRING_LITERAL(QUIC_INVALID_VERSION); |
177 RETURN_STRING_LITERAL(QUIC_STREAM_RST_BEFORE_HEADERS_DECOMPRESSED); | 177 RETURN_STRING_LITERAL(QUIC_STREAM_RST_BEFORE_HEADERS_DECOMPRESSED); |
178 RETURN_STRING_LITERAL(QUIC_INVALID_HEADER_ID); | 178 RETURN_STRING_LITERAL(QUIC_INVALID_HEADER_ID); |
179 RETURN_STRING_LITERAL(QUIC_INVALID_NEGOTIATED_VALUE); | 179 RETURN_STRING_LITERAL(QUIC_INVALID_NEGOTIATED_VALUE); |
180 RETURN_STRING_LITERAL(QUIC_DECOMPRESSION_FAILURE); | 180 RETURN_STRING_LITERAL(QUIC_DECOMPRESSION_FAILURE); |
181 RETURN_STRING_LITERAL(QUIC_CONNECTION_TIMED_OUT); | 181 RETURN_STRING_LITERAL(QUIC_CONNECTION_TIMED_OUT); |
182 RETURN_STRING_LITERAL(QUIC_ERROR_MIGRATING_ADDRESS); | 182 RETURN_STRING_LITERAL(QUIC_ERROR_MIGRATING_ADDRESS); |
183 RETURN_STRING_LITERAL(QUIC_PACKET_WRITE_ERROR); | 183 RETURN_STRING_LITERAL(QUIC_PACKET_WRITE_ERROR); |
| 184 RETURN_STRING_LITERAL(QUIC_PACKET_READ_ERROR); |
184 RETURN_STRING_LITERAL(QUIC_PROOF_INVALID); | 185 RETURN_STRING_LITERAL(QUIC_PROOF_INVALID); |
185 RETURN_STRING_LITERAL(QUIC_CRYPTO_DUPLICATE_TAG); | 186 RETURN_STRING_LITERAL(QUIC_CRYPTO_DUPLICATE_TAG); |
186 RETURN_STRING_LITERAL(QUIC_CRYPTO_ENCRYPTION_LEVEL_INCORRECT); | 187 RETURN_STRING_LITERAL(QUIC_CRYPTO_ENCRYPTION_LEVEL_INCORRECT); |
187 RETURN_STRING_LITERAL(QUIC_CRYPTO_SERVER_CONFIG_EXPIRED); | 188 RETURN_STRING_LITERAL(QUIC_CRYPTO_SERVER_CONFIG_EXPIRED); |
188 RETURN_STRING_LITERAL(QUIC_LAST_ERROR); | 189 RETURN_STRING_LITERAL(QUIC_LAST_ERROR); |
189 // Intentionally have no default case, so we'll break the build | 190 // Intentionally have no default case, so we'll break the build |
190 // if we add errors and don't put them here. | 191 // if we add errors and don't put them here. |
191 } | 192 } |
192 // Return a default value so that we return this when |error| doesn't match | 193 // Return a default value so that we return this when |error| doesn't match |
193 // any of the QuicErrorCodes. This can happen when the ConnectionClose | 194 // any of the QuicErrorCodes. This can happen when the ConnectionClose |
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
257 | 258 |
258 bytes_remaining -= line_bytes; | 259 bytes_remaining -= line_bytes; |
259 offset += line_bytes; | 260 offset += line_bytes; |
260 p += line_bytes; | 261 p += line_bytes; |
261 s += '\n'; | 262 s += '\n'; |
262 } | 263 } |
263 return s; | 264 return s; |
264 } | 265 } |
265 | 266 |
266 } // namespace net | 267 } // namespace net |
OLD | NEW |