Skip to content
This repository was archived by the owner on Jan 23, 2023. It is now read-only.
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: dotnet/corefx
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: master
Choose a base ref
...
head repository: simonferquel/corefx
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: custom-dialers
Choose a head ref
  • 2 commits
  • 7 files changed
  • 1 contributor

Commits on Feb 19, 2019

  1. Add support for custom socket / stream dialers

    This add custom dialers support for SocketsHttpHandler. This provide
    support for client requiring to talk to an HTTP server listening on a
    non-TCP socker (e.g.: a named pipe, Unix socket) and opens a way for
    users to do end to end testing of their code base without having to open TCP ports.
    
    Two flavors of dialers are supported:
    - one returning both a Socket and a Stream (to allow socket level
    manipulations such as Poll)
    - one returning only a stream (in this case, socket level manipulations
    are emulated by the existing HttpConnection class)
    simonferquel committed Feb 19, 2019
    Configuration menu
    Copy the full SHA
    3285eb5 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    1cc975c View commit details
    Browse the repository at this point in the history
Loading