Ignore:
Timestamp:
Jan 19, 2019, 6:12:21 PM (6 years ago)
Author:
alloc
Message:

Fixed game version compatibility of GamePrefs
Code style cleanup (mostly argument names)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • binary-improvements/MapRendering/Web/Web.cs

    r332 r351  
    2727                public Web () {
    2828                        try {
    29                                 int webPort = GamePrefs.GetInt (EnumGamePrefs.ControlPanelPort);
     29                                int webPort = GamePrefs.GetInt (EnumUtils.Parse<EnumGamePrefs> ("ControlPanelPort"));
    3030                                if (webPort < 1 || webPort > 65533) {
    3131                                        Log.Out ("Webserver not started (ControlPanelPort not within 1-65533)");
     
    132132                }
    133133
    134                 public void SendLine (string line) {
    135                         connectionHandler.SendLine (line);
    136                 }
    137 
    138                 public void SendLog (string text, string trace, LogType type) {
     134                public void SendLine (string _line) {
     135                        connectionHandler.SendLine (_line);
     136                }
     137
     138                public void SendLog (string _text, string _trace, LogType _type) {
    139139                        // Do nothing, handled by LogBuffer internally
    140140                }
    141141
    142                 public static bool isSslRedirected (HttpListenerRequest req) {
    143                         string proto = req.Headers ["X-Forwarded-Proto"];
     142                public static bool isSslRedirected (HttpListenerRequest _req) {
     143                        string proto = _req.Headers ["X-Forwarded-Proto"];
    144144                        if (!string.IsNullOrEmpty (proto)) {
    145145                                return proto.Equals ("https", StringComparison.OrdinalIgnoreCase);
     
    156156#endif
    157157
    158                 private void HandleRequest (IAsyncResult result) {
     158                private void HandleRequest (IAsyncResult _result) {
    159159                        if (!_listener.IsListening) {
    160160                                return;
     
    167167#if ENABLE_PROFILER
    168168                        Profiler.BeginThreadProfiling ("AllocsMods", "WebRequest");
    169                         HttpListenerContext ctx = _listener.EndGetContext (result);
     169                        HttpListenerContext ctx = _listener.EndGetContext (_result);
    170170                        try {
    171171#else
     
    314314                }
    315315
    316                 public static void SetResponseTextContent (HttpListenerResponse resp, string text) {
    317                         byte[] buf = Encoding.UTF8.GetBytes (text);
    318                         resp.ContentLength64 = buf.Length;
    319                         resp.ContentType = "text/html";
    320                         resp.ContentEncoding = Encoding.UTF8;
    321                         resp.OutputStream.Write (buf, 0, buf.Length);
     316                public static void SetResponseTextContent (HttpListenerResponse _resp, string _text) {
     317                        byte[] buf = Encoding.UTF8.GetBytes (_text);
     318                        _resp.ContentLength64 = buf.Length;
     319                        _resp.ContentType = "text/html";
     320                        _resp.ContentEncoding = Encoding.UTF8;
     321                        _resp.OutputStream.Write (buf, 0, buf.Length);
    322322                }
    323323        }
Note: See TracChangeset for help on using the changeset viewer.