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 // Some helpers for quic | 5 // Some helpers for quic |
6 | 6 |
7 #ifndef NET_QUIC_QUIC_UTILS_H_ | 7 #ifndef NET_QUIC_QUIC_UTILS_H_ |
8 #define NET_QUIC_QUIC_UTILS_H_ | 8 #define NET_QUIC_QUIC_UTILS_H_ |
9 | 9 |
10 #include "net/base/int128.h" | 10 #include "net/base/int128.h" |
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
56 static const char* ErrorToString(QuicErrorCode error); | 56 static const char* ErrorToString(QuicErrorCode error); |
57 | 57 |
58 // Returns the level of encryption as a char* | 58 // Returns the level of encryption as a char* |
59 static const char* EncryptionLevelToString(EncryptionLevel level); | 59 static const char* EncryptionLevelToString(EncryptionLevel level); |
60 | 60 |
61 // TagToString is a utility function for pretty-printing handshake messages | 61 // TagToString is a utility function for pretty-printing handshake messages |
62 // that converts a tag to a string. It will try to maintain the human friendly | 62 // that converts a tag to a string. It will try to maintain the human friendly |
63 // name if possible (i.e. kABCD -> "ABCD"), or will just treat it as a number | 63 // name if possible (i.e. kABCD -> "ABCD"), or will just treat it as a number |
64 // if not. | 64 // if not. |
65 static std::string TagToString(QuicTag tag); | 65 static std::string TagToString(QuicTag tag); |
| 66 |
| 67 // Given a binary buffer, return a hex+ASCII dump in the style of |
| 68 // tcpdump's -X and -XX options: |
| 69 // "0x0000: 0090 69bd 5400 000d 610f 0189 0800 4500 ..i.T...a.....E.\n" |
| 70 // "0x0010: 001c fb98 4000 4001 7e18 d8ef 2301 455d ....@.@.~...#.E]\n" |
| 71 // "0x0020: 7fe2 0800 6bcb 0bc6 806e ....k....n\n" |
| 72 static std::string StringToHexASCIIDump(base::StringPiece in_buffer); |
66 }; | 73 }; |
67 | 74 |
68 } // namespace net | 75 } // namespace net |
69 | 76 |
70 #endif // NET_QUIC_QUIC_UTILS_H_ | 77 #endif // NET_QUIC_QUIC_UTILS_H_ |
OLD | NEW |