[Modify] Add it

This commit is contained in:
sta 2018-09-12 20:51:08 +09:00
parent 50e062c7ff
commit 03f85bc91d

View File

@ -412,6 +412,19 @@ namespace WebSocketSharp.Net
|| c == '_';
}
private static bool isUnreservedInRfc2396 (char c)
{
return c == '!'
|| c == '\''
|| c == '('
|| c == ')'
|| c == '*'
|| c == '-'
|| c == '.'
|| c == '_'
|| c == '~';
}
private static bool notEncoded (char c)
{
return c == '!' ||