Ejemplo n.º 1
0
        //protected override void proccessHttp(HttpEngine http, String message)
        //{
        //    App.Log.logEvent(message, Event.EVENT_FLAGS.NORMAL | Event.EVENT_FLAGS.DEBUG);
        //    base.proccessHttp(http, message);
        //}

        public virtual void Disconnect(MyClientContainer client)
        {
            //
            if (Disconnected != null)
            {
                Disconnected(client);
            }
            base.Disconnect(client.getClient());
        }
Ejemplo n.º 2
0
        public myHttpEngine(Stream networkStream, MyClientContainer client)
            : base(networkStream, client.getClient())
        {
            //Only rewrite clientcontainer vlues if it is recognized that they are missing.
            //se then on / request
            //this.client = new ClientContainer(client);
            this.client = client;
            needsUpdate = true;
            isFirst     = true;

            //addPageMutation("{RSAKEY}", BitConverter.ToString(Bouncer.rcsp.ExportParameters(false).Modulus).Replace("-", ""));
            //addPageMutation("{RSAEX}", BitConverter.ToString(Bouncer.rcsp.ExportParameters(false).Exponent, 0).ToString().Replace("-", ""));
            //feedRemoteListHtml();
        }