1 /*
2  * Copyright (c) Facebook, Inc. and its affiliates.
3  * All rights reserved.
4  *
5  * This source code is licensed under the BSD-style license found in the
6  * LICENSE file in the root directory of this source tree.
7  */
8 
9 #pragma once
10 
11 namespace proxygen {
12 
13 enum class SPDYVersion { SPDY3 = 0, SPDY3_1 };
14 
15 }
16