|
|
|
@ -935,8 +935,9 @@ namespace WebSocketSharp.Net
|
|
|
|
|
|
|
|
|
|
|
|
private static bool isRestricted (string name, bool response)
|
|
|
|
private static bool isRestricted (string name, bool response)
|
|
|
|
{
|
|
|
|
{
|
|
|
|
var info = getHeaderInfo (name);
|
|
|
|
var headerInfo = getHeaderInfo (name);
|
|
|
|
return info != null && info.IsRestricted (response);
|
|
|
|
|
|
|
|
|
|
|
|
return headerInfo != null && headerInfo.IsRestricted (response);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
private void removeWithoutCheckingName (string name, string unuse)
|
|
|
|
private void removeWithoutCheckingName (string name, string unuse)
|
|
|
|
|