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

Side by Side Diff: net/quic/quic_utils.h

Issue 15951002: QUIC - Added StringToHexASCIIDump to return a hex+ASCII dump in the (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fixing windows build error Created 7 years, 7 months 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 | « net/quic/quic_connection.cc ('k') | net/quic/quic_utils.cc » ('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 // 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
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_
OLDNEW
« no previous file with comments | « net/quic/quic_connection.cc ('k') | net/quic/quic_utils.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698