BF2Statistics.Gamespy.CDKeyServer.CDKeyServer C# (CSharp) Method

CDKeyServer() public method

Creates a new instance of CDKeyServer
public CDKeyServer ( LogWriter DebugLog ) : System
DebugLog BF2Statistics.Logging.LogWriter The GamespyDebug.log logwriter object
return System
        public CDKeyServer(LogWriter DebugLog)
            : base(29910, 4)
        {
            // Debugging
            this.DebugLog = DebugLog;
            DebugLog.Write("Bound to UDP port: " + Port);

            // Start accepting remote connections
            base.StartAcceptAsync();
        }