[Modify] Add it

This commit is contained in:
sta 2018-09-12 20:36:06 +09:00
parent 73342ac5ae
commit 50e062c7ff

View File

@ -404,6 +404,14 @@ namespace WebSocketSharp.Net
return c >= '0' && c <= '9'; return c >= '0' && c <= '9';
} }
private static bool isUnreserved (char c)
{
return c == '*'
|| c == '-'
|| c == '.'
|| c == '_';
}
private static bool notEncoded (char c) private static bool notEncoded (char c)
{ {
return c == '!' || return c == '!' ||