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 #include <stdint.h> | 8 #include <stdint.h> |
9 | 9 |
10 #include <algorithm> | 10 #include <algorithm> |
(...skipping 281 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
292 RETURN_STRING_LITERAL(QUIC_BAD_MULTIPATH_FLAG); | 292 RETURN_STRING_LITERAL(QUIC_BAD_MULTIPATH_FLAG); |
293 RETURN_STRING_LITERAL(QUIC_IP_ADDRESS_CHANGED); | 293 RETURN_STRING_LITERAL(QUIC_IP_ADDRESS_CHANGED); |
294 RETURN_STRING_LITERAL(QUIC_CONNECTION_MIGRATION_NO_MIGRATABLE_STREAMS); | 294 RETURN_STRING_LITERAL(QUIC_CONNECTION_MIGRATION_NO_MIGRATABLE_STREAMS); |
295 RETURN_STRING_LITERAL(QUIC_CONNECTION_MIGRATION_TOO_MANY_CHANGES); | 295 RETURN_STRING_LITERAL(QUIC_CONNECTION_MIGRATION_TOO_MANY_CHANGES); |
296 RETURN_STRING_LITERAL(QUIC_CONNECTION_MIGRATION_NO_NEW_NETWORK); | 296 RETURN_STRING_LITERAL(QUIC_CONNECTION_MIGRATION_NO_NEW_NETWORK); |
297 RETURN_STRING_LITERAL(QUIC_CONNECTION_MIGRATION_NON_MIGRATABLE_STREAM); | 297 RETURN_STRING_LITERAL(QUIC_CONNECTION_MIGRATION_NON_MIGRATABLE_STREAM); |
298 RETURN_STRING_LITERAL(QUIC_TOO_MANY_RTOS); | 298 RETURN_STRING_LITERAL(QUIC_TOO_MANY_RTOS); |
299 RETURN_STRING_LITERAL(QUIC_ATTEMPT_TO_SEND_UNENCRYPTED_STREAM_DATA); | 299 RETURN_STRING_LITERAL(QUIC_ATTEMPT_TO_SEND_UNENCRYPTED_STREAM_DATA); |
300 RETURN_STRING_LITERAL(QUIC_MAYBE_CORRUPTED_MEMORY); | 300 RETURN_STRING_LITERAL(QUIC_MAYBE_CORRUPTED_MEMORY); |
301 RETURN_STRING_LITERAL(QUIC_CRYPTO_CHLO_TOO_LARGE); | 301 RETURN_STRING_LITERAL(QUIC_CRYPTO_CHLO_TOO_LARGE); |
| 302 RETURN_STRING_LITERAL(QUIC_MULTIPATH_PATH_DOES_NOT_EXIST); |
| 303 RETURN_STRING_LITERAL(QUIC_MULTIPATH_PATH_NOT_ACTIVE); |
302 RETURN_STRING_LITERAL(QUIC_LAST_ERROR); | 304 RETURN_STRING_LITERAL(QUIC_LAST_ERROR); |
303 // Intentionally have no default case, so we'll break the build | 305 // Intentionally have no default case, so we'll break the build |
304 // if we add errors and don't put them here. | 306 // if we add errors and don't put them here. |
305 } | 307 } |
306 // Return a default value so that we return this when |error| doesn't match | 308 // Return a default value so that we return this when |error| doesn't match |
307 // any of the QuicErrorCodes. This can happen when the ConnectionClose | 309 // any of the QuicErrorCodes. This can happen when the ConnectionClose |
308 // frame sent by the peer (attacker) has invalid error code. | 310 // frame sent by the peer (attacker) has invalid error code. |
309 return "INVALID_ERROR_CODE"; | 311 return "INVALID_ERROR_CODE"; |
310 } | 312 } |
311 | 313 |
(...skipping 250 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
562 | 564 |
563 bytes_remaining -= line_bytes; | 565 bytes_remaining -= line_bytes; |
564 offset += line_bytes; | 566 offset += line_bytes; |
565 p += line_bytes; | 567 p += line_bytes; |
566 s += '\n'; | 568 s += '\n'; |
567 } | 569 } |
568 return s; | 570 return s; |
569 } | 571 } |
570 | 572 |
571 } // namespace net | 573 } // namespace net |
OLD | NEW |