Files
proxypin/lib/network/http/constants.dart
wanghongenpin ba4072691e http2协议
2023-12-28 16:12:44 +08:00

17 lines
282 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;
}