Git Product home page Git Product logo

Comments (5)

GoogleCodeExporter avatar GoogleCodeExporter commented on August 16, 2024
I have a simlar problem but only with Windows 2003 Server where messages are 
not arriving on the server.

I also have bloated with messages but nothing every arives.

If i do the same test project on a Windows XP everything works fine.

Original comment by [email protected] on 5 Jul 2010 at 9:47

from lidgren-network-gen3.

GoogleCodeExporter avatar GoogleCodeExporter commented on August 16, 2024
My message size is 178 bytes rough size

Original comment by [email protected] on 5 Jul 2010 at 9:48

from lidgren-network-gen3.

GoogleCodeExporter avatar GoogleCodeExporter commented on August 16, 2024
Still unable to reproduce this (after fix in revision 59) - Chat sample now 
uses a custom sequence channel and the first message always arrives promptly.

Original comment by [email protected] on 13 Jul 2010 at 2:40

  • Changed state: Accepted

from lidgren-network-gen3.

GoogleCodeExporter avatar GoogleCodeExporter commented on August 16, 2024
The problem can be easily reproduced with the ChatServer/ChatClient exmaple.
I modified the ChatClient to use a new delivery method like:
            NetDeliveryMethod ndm = NetDeliveryMethod.ReliableOrdered;// added

            if (input.ToLowerInvariant() == "change")  // added
                ndm = NetDeliveryMethod.Unreliable;    // added

        // send chat message
        ChatMessage cm = new ChatMessage();
        cm.Sender = Client.UniqueIdentifier.ToString();
        cm.Text = input;

        NetOutgoingMessage om = Client.CreateMessage();
        om.WriteAllFields(cm);
                Client.SendMessage(om, ndm, 8);// changed to use ndm

So it is in fact the NetDeliveryMethod which causes the problem not the 
sequence channel!

Original comment by [email protected] on 14 Jul 2010 at 11:00

from lidgren-network-gen3.

GoogleCodeExporter avatar GoogleCodeExporter commented on August 16, 2024
Nice repro! It turned out the first sequenced message was swallowed and sending 
Unreliable using sequence channel 8 would send such a message. Both errors 
fixed in revision 74.

Original comment by [email protected] on 15 Jul 2010 at 5:42

  • Changed state: Fixed

from lidgren-network-gen3.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.