GithubHelp home page GithubHelp logo

Comments (7)

Lukasa avatar Lukasa commented on June 16, 2024

We've never implemented support for it, and in practice the plaintext upgrade functionality was essentially never deployed. In fact, it's being removed from the revision of the specification for HTTP/2 because of how little it was used.

from swift-nio-http2.

qqvm avatar qqvm commented on June 16, 2024

I am trying to do that manually, and streamChannel does not get initialized with my final handler. But handshake and settings exchange are successful.

from swift-nio-http2.

Lukasa avatar Lukasa commented on June 16, 2024

Can you show me what your pipeline setup looks like?

from swift-nio-http2.

qqvm avatar qqvm commented on June 16, 2024

I have something like this:

self.deleteAllHandlers(context)

context.channel.configureHTTP2Pipeline(mode: .server) { streamChannel -> EventLoopFuture<Void> in
    print("configureHTTP2Pipeline triggered")
    return streamChannel.pipeline.addHandler(HTTP2FramePayloadToHTTP1ServerCodec(normalizeHTTPHeaders: true)).flatMap { () -> EventLoopFuture<Void> in
        streamChannel.pipeline.addHandler(PlainHTTPHandler(fromHTTP2: true)).flatMap { () -> EventLoopFuture<Void> in
            streamChannel.pipeline.addHandler(ErrorHandler())
        }
    }
}.flatMap { (_: HTTP2StreamMultiplexer) in
    context.channel.pipeline.addHandler(ErrorHandler())
}

from swift-nio-http2.

Lukasa avatar Lukasa commented on June 16, 2024

And to be clear, this is attempting to do plaintext upgrade?

from swift-nio-http2.

qqvm avatar qqvm commented on June 16, 2024

Yes, this is a plaintext upgrade from HTTP/1.

from swift-nio-http2.

Lukasa avatar Lukasa commented on June 16, 2024

Ok, without changes to the core state machine this cannot work. HTTP/2 has a defined upgrade pattern from HTTP/1.1 that requires passing a SETTINGS frame in via a header, and consuming the body payload from the HTTP/1.1 request. You'd need to update the HTTP2Handler and associated state machines in order to get this to work.

from swift-nio-http2.

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.