mirror of
https://github.com/wanghongenpin/proxypin.git
synced 2026-03-29 06:59:46 +08:00
20 lines
330 B
Dart
20 lines
330 B
Dart
class HttpConstants {
|
|
//h2协议
|
|
static const String h2 = 'h2';
|
|
|
|
/// 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;
|
|
}
|