diff options
Diffstat (limited to 'OpenSim/Framework/Servers/BaseHttpServer.cs')
-rw-r--r-- | OpenSim/Framework/Servers/BaseHttpServer.cs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/OpenSim/Framework/Servers/BaseHttpServer.cs b/OpenSim/Framework/Servers/BaseHttpServer.cs index 889eaef..1baf073 100644 --- a/OpenSim/Framework/Servers/BaseHttpServer.cs +++ b/OpenSim/Framework/Servers/BaseHttpServer.cs | |||
@@ -44,21 +44,21 @@ namespace OpenSim.Framework.Servers | |||
44 | protected HttpListener m_httpListener; | 44 | protected HttpListener m_httpListener; |
45 | protected Dictionary<string, XmlRpcMethod> m_rpcHandlers = new Dictionary<string, XmlRpcMethod>(); | 45 | protected Dictionary<string, XmlRpcMethod> m_rpcHandlers = new Dictionary<string, XmlRpcMethod>(); |
46 | protected Dictionary<string, IRequestHandler> m_streamHandlers = new Dictionary<string, IRequestHandler>(); | 46 | protected Dictionary<string, IRequestHandler> m_streamHandlers = new Dictionary<string, IRequestHandler>(); |
47 | protected int m_port; | 47 | protected uint m_port; |
48 | protected bool m_ssl = false; | 48 | protected bool m_ssl = false; |
49 | protected bool m_firstcaps = true; | 49 | protected bool m_firstcaps = true; |
50 | 50 | ||
51 | public int Port | 51 | public uint Port |
52 | { | 52 | { |
53 | get { return m_port; } | 53 | get { return m_port; } |
54 | } | 54 | } |
55 | 55 | ||
56 | public BaseHttpServer(int port) | 56 | public BaseHttpServer(uint port) |
57 | { | 57 | { |
58 | m_port = port; | 58 | m_port = port; |
59 | } | 59 | } |
60 | 60 | ||
61 | public BaseHttpServer(int port, bool ssl) | 61 | public BaseHttpServer(uint port, bool ssl) |
62 | { | 62 | { |
63 | m_ssl = ssl; | 63 | m_ssl = ssl; |
64 | m_port = port; | 64 | m_port = port; |