Navigation Menu

Skip to content
This repository has been archived by the owner on May 4, 2018. 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: joyent/libuv
base: 2b9c374c1c07
Choose a base ref
...
head repository: joyent/libuv
compare: 02e8c8ef6527
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Sep 6, 2013

  1. include: clarify uv_tcp_bind() behavior

    On BSD-like platforms, EADDRINUSE is returned by the bind() system call.
    On other platforms, it's returned by the listen() system call.
    
    In other words, some platforms are 'first to bind wins', others are
    'first to listen wins' - but only with TCP sockets: UNIX domain sockets
    always return EADDRINUSE from the bind() system call, UDP sockets don't
    call listen() in the first place.
    
    Fixes #769.
    bnoordhuis committed Sep 6, 2013
    Copy the full SHA
    02e8c8e View commit details
    Browse the repository at this point in the history