Git Product home page Git Product logo

Comments (4)

9swampy avatar 9swampy commented on June 9, 2024

Sounds like a sort of race condition; the string doesn't terminate with "#" it terminates with "#+the other chars" hence the condition isn't being met. Two routes forward; rework to await the full terminating string (0.8.1's published with your LineTerminator configuration in) or work out why the termination isn't caught in passing?

from telnet.

A9G-Data-Droid avatar A9G-Data-Droid commented on June 9, 2024

That's what I don't understand. Doesn't TerminatedReadAsync move one byte at a time?

The Char should be seen as one of those bytes and exit the reading loop ...

from telnet.

9swampy avatar 9swampy commented on June 9, 2024

Sorry, where did I say the code was perfect and/or bug free? :-p I don't have time to look in to it more tonight; let me know how you get on?

from telnet.

A9G-Data-Droid avatar A9G-Data-Droid commented on June 9, 2024

Ok, I think I'm on to something.

The "IsTerminatorLocated" looks at the last char using ".EndsWith".
"TerminatedReadAsync" checks if it's terminated in a loop calling "ReadAsync".

So far, so good. Here is the problem:
"ReadAsync" pulls bytes in a loop based on some rollingTimeout that I don't fully understand.

It looks like the nested read loop inside ReadAsync can return more than one char so that when we get back to the Terminator check, the terminator is no longer on the end.

Two solutions:

  1. Change "EndsWith" to "Contains" to detect the terminator across the whole string.
    (This might have performance impacts on long server responses)

  2. Change the exit conditions for the ReadAsync loop to ensure we only return one char at a time.
    (I don't understand why we are looping here at all so I'm not sure what the impact would be)

Do you have a preference? Or a 3rd option? I'm leaning towards ".Contains" right now.

from telnet.

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.