OLD | NEW |
(Empty) | |
| 1 # Copyright 2017 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. |
| 4 |
| 5 # Fuzzer dictionary of HTTP/2.0 messages |
| 6 |
| 7 # Len = 5, Type = 0 (DATA), Flags = 0, Stream = 1, Payload = ABCDE |
| 8 "\x00\x00\x05\x00\x00\x00\x00\x00\x01ABCE" |
| 9 |
| 10 # Len = 5, Type = 0 (DATA), Flags = 8 (PADDED), Stream = 1, Pad = 2, |
| 11 # Payload = AB, Padding = 00 00 |
| 12 "\x00\x00\x05\x00\x08\x00\x00\x00\x01\x02AB\x00\x00" |
| 13 |
| 14 # Headers. This is from |resp| in SpdyNetworkTransactionTest.Get |
| 15 "\x00\x00\x0b\x01\x04\x00\x00\x00\x01\x88\x40\x84\x9c\xb4\x50\x7f\x03\x62\x79\x6
5" |
| 16 |
| 17 # |late_headers| from SpdyNetworkTransactionTest.ServerPushWithHeaders. |
| 18 "\x00\x00\x02\x01\x04\x00\x00\x00\x02\x88\xbf" |
| 19 |
| 20 # Len = 5, Type = 2 (PRIORITY), Flags = 0, stream = 1 Dep = 00 00 00 00, |
| 21 # weight = 128 |
| 22 "\x00\x00\x05\x02\x00\x00\x00\x00\x01\x00\x00\x00\x00\x80" |
| 23 |
| 24 # Len = 4, Type = 3 (RST_STREAM), Flags = 0, stream = 1, Code = 00 00 00 02 |
| 25 "\x00\x00\x04\x03\x00\x00\x00\x00\x01\x00\x00\x00\x02" |
| 26 |
| 27 # Len = 0, Type = 4 (SETTINGS), Flags = 1 (ACK), stream = 1 |
| 28 "\x00\x00\x00\x04\x01\x00\x00\x00\x01" |
| 29 |
| 30 # Len = 6, Type = 4 (SETTINGS), Flags = 0, stream = 1, |
| 31 # ident = SETTINGS_MAX_FRAME_SIZE (0x5), val = 65535 |
| 32 "\x00\x00\x06\x04\x00\x00\x00\x00\x01\x00\x05\x00\x00\xFF\xFF" |
| 33 |
| 34 # Push promise. This one is from |stream2_syn| in |
| 35 # SpdyNetworkTransactionTest.ServerPushWithHeaders. |
| 36 "\x00\x00\x21\x05\x04\x00\x00\x00\x01\x00\x00\x00\x02\x41\x8c\xf1\xe3\xc2\xe5\xf
2\x3a\x6b\xa0\xab\x9e\xc9\xbf\x87\x00\x84\xb9\x58\xd3\x3f\x87\x61\x89\x4e\x75\xe
4\x1a\x7f" |
| 37 |
| 38 # Len = 8, Type = 6 (PING), Flags = 0, stream = 1, data = "ABCDEFGH" |
| 39 "\x00\x00\x08\x06\x00\x00\x00\x00\x01ACDEFGH" |
| 40 |
| 41 # Len = 8, TYPE = 7 (GOAWAY), Flags = 0, stream = 0, last stream = 1, error = 2 |
| 42 "\x00\x00\x08\x07\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x02" |
| 43 |
| 44 # Len = 4, TYPE = 8 (WINDOW_UPDATE), Flags = 0, stream = 1, size = 65536 |
| 45 "\x00\x00\x04\x08\x00\x00\x00\x00\x01\x00\x01\x00\x00\x00" |
| 46 |
| 47 # Continuation frame (type = 9), taken from |
| 48 # SpdyFramerTest.ContinuationWithStreamIdZero, except with stream set to 1. |
| 49 "\x00\x00\x16\x09\x04\x00\x00\x00\x01\x73\x6f\x6d\x65\x20\x6e\x6f\x6e\x73\x65\x6
e\x73\x65\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67" |
| 50 |
| 51 # AltSvc (type = A), taken from SpdyFramerTest.CreateAltSvc |
| 52 "\x00\x00\x49\x0a\x00\x00\x00\x00\x03\x00\x06\x6f\x72\x69\x67\x69\x6e\x70\x69\x6
4\x31\x3d\x22\x68\x6f\x73\x74\x3a\x34\x34\x33\x22\x3b\x20\x6d\x61\x3d\x35\x2c\x7
0\x25\x32\x32\x25\x33\x44\x69\x25\x33\x41\x64\x3d\x22\x68\x5f\x5c\x5c\x6f\x5c\x2
2\x73\x74\x3a\x31\x32\x33\x22\x3b\x20\x6d\x61\x3d\x34\x32\x3b\x20\x76\x3d\x22\x3
2\x34\x22" |
| 53 |
OLD | NEW |