Giter Site home page Giter Site logo

Comments (4)

drbh avatar drbh commented on May 22, 2024

^ also the example above simply closes a connection - but long term I'd like to be able to process POST requests and send data in the responses. 🙏

from message-io.

lemunozm avatar lemunozm commented on May 22, 2024

Hi @drbh, I'm glad you find message-io useful :)

If I understand well, you are implementing the HTTP server part in message-io, right? Until I know the header Connection: close is sent by clients in order to tell the server that the connection will be closed after the server response. If you send it from the server to the client I think the behaviour is not specified (unless the client implements some extra mechanism to detect that).

The NetEvent::Accepted event is dispatched only when the client is connected and before the first client message. In order to respond to the server, the server should send the message after reading it in the NetEvent::Message. Take into account that an HTTP request could be received spllited in several TCP packets which means several NetEvent::Message. You will need some decoding mechanism to accumulate the message until the entire HTTP request is received.

In order to close the connection from the server perspective after sending the response, you could use handler.network().remove(endpoint).

from message-io.

lemunozm avatar lemunozm commented on May 22, 2024

Regarding the HTTP decoding part, you could use httparse, which tells if a request is completed or patial. The server will wait for more NetEvent::Message events until the whole received data is considered completed.

from message-io.

lemunozm avatar lemunozm commented on May 22, 2024

I think the issue can be closed, if not, please feel free to reopen it!

from message-io.

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.