Giter Site home page Giter Site logo

TCP Streaming/Segmentation issue about datachat HOT 1 OPEN

ademclk avatar ademclk commented on August 18, 2024
TCP Streaming/Segmentation issue

from datachat.

Comments (1)

ademclk avatar ademclk commented on August 18, 2024

In TCP, data is sent as a continuous stream of bytes. As such, it does not inherently preserve message boundaries. If you send two messages "Hello" and "World", TCP could deliver them as one combined message "HelloWorld". This can cause issues when trying to interpret the received data, as seen in the issue with checking parity bits.

The solution to this problem is to implement a message framing protocol on top of TCP. In this case, we've used a length-prefix framing where each message is prefixed with its length. This means that before sending a message, we first send the length of the message, allowing the receiver to know exactly how many bytes to expect for each complete message.

The implementation involves modifying the send and receive functions. In the sendDelimitedMessage() function, we first send the length of the message (converted to network byte order), then the actual message. On the receiver side, in the receiveDelimitedMessage() function, we first read the length of the message, then read that many bytes for the actual message.

from datachat.

Related Issues (6)

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.