[Modify] Add it
This commit is contained in:
parent
73342ac5ae
commit
50e062c7ff
@ -404,6 +404,14 @@ namespace WebSocketSharp.Net
|
||||
return c >= '0' && c <= '9';
|
||||
}
|
||||
|
||||
private static bool isUnreserved (char c)
|
||||
{
|
||||
return c == '*'
|
||||
|| c == '-'
|
||||
|| c == '.'
|
||||
|| c == '_';
|
||||
}
|
||||
|
||||
private static bool notEncoded (char c)
|
||||
{
|
||||
return c == '!' ||
|
||||
|
Loading…
Reference in New Issue
Block a user