[Modify] Add it
This commit is contained in:
parent
67176e17ba
commit
3989809d43
@ -415,6 +415,14 @@ namespace WebSocketSharp.Net
|
||||
return c >= '0' && c <= '9';
|
||||
}
|
||||
|
||||
private static bool isUnreserved (byte b)
|
||||
{
|
||||
return b == 42
|
||||
|| b == 45
|
||||
|| b == 46
|
||||
|| b == 95;
|
||||
}
|
||||
|
||||
private static bool isUnreserved (char c)
|
||||
{
|
||||
return c == '*'
|
||||
|
Loading…
Reference in New Issue
Block a user