mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-06-26 11:12:53 +00:00
add ipv6, update SocketHttpListener
This commit is contained in:
parent
bc396aa021
commit
e174a7c1ef
22 changed files with 1154 additions and 142 deletions
|
|
@ -2,6 +2,7 @@
|
|||
using System.Collections.Generic;
|
||||
using System.IO;
|
||||
using System.Text;
|
||||
using System.Web;
|
||||
using Funq;
|
||||
using MediaBrowser.Model.Logging;
|
||||
using ServiceStack;
|
||||
|
|
@ -236,7 +237,7 @@ namespace MediaBrowser.Server.Implementations.HttpServer.SocketSharp
|
|||
private NameValueCollectionWrapper queryString;
|
||||
public INameValueCollection QueryString
|
||||
{
|
||||
get { return queryString ?? (queryString = new NameValueCollectionWrapper(HttpUtility.ParseQueryString(request.Url.Query))); }
|
||||
get { return queryString ?? (queryString = new NameValueCollectionWrapper(MyHttpUtility.ParseQueryString(request.Url.Query))); }
|
||||
}
|
||||
|
||||
private NameValueCollectionWrapper formData;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue