mirror of
https://github.com/wanghongenpin/proxypin.git
synced 2026-03-26 06:29:46 +08:00
21 lines
369 B
Dart
21 lines
369 B
Dart
class HttpConstants {
|
|
//h2协议
|
|
static const String h2 = 'h2';
|
|
static const String h2_14 = 'h2-14';
|
|
|
|
/// Line feed character /n
|
|
static const int lf = 10;
|
|
|
|
/// Carriage return /r
|
|
static const int cr = 13;
|
|
|
|
/// Horizontal space
|
|
static const int sp = 32;
|
|
|
|
/// Colon ':'
|
|
static const int colon = 58;
|
|
|
|
/// Colon '='
|
|
static const int equal = 61;
|
|
}
|