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: 49977386e93d
Choose a base ref
...
head repository: joyent/libuv
compare: 034ea318af8a
Choose a head ref
  • 8 commits
  • 5 files changed
  • 1 contributor

Commits on Jan 30, 2013

  1. Copy the full SHA
    4c5c5d9 View commit details
    Browse the repository at this point in the history
  2. Copy the full SHA
    d27d1e5 View commit details
    Browse the repository at this point in the history
  3. Copy the full SHA
    f0844ee View commit details
    Browse the repository at this point in the history
  4. win: fix uv_winsock_init crash when no IPv4 stack present

    uv_winsock_init() tries to create an IPv4 socket in order to detect
    if the system has any layered service providers (LSPs) installed.
    When creating this socket failed it would call uv_fatal_error and exit
    with the following message:
    
      socket: (10047) An address incompatible with the requested protocol was used.
    
    This patch fixes that. It also includes some minor style tweaks.
    piscisaureus committed Jan 30, 2013
    Copy the full SHA
    3382a92 View commit details
    Browse the repository at this point in the history
  5. win/tcp: make uv_tcp_set_socket set UV_HANDLE_IPV6

    This makes uv_tcp_set_socket responsible for setting the UV_HANDLE_IPV6
    flag. This fixes a couple of situations where the the fact that a socket
    is an IPv6 socket is not taken into account when deciding whether a call
    to SetFileCompletionNotificationModes is appropriate.
    piscisaureus committed Jan 30, 2013
    Copy the full SHA
    c45564a View commit details
    Browse the repository at this point in the history
  6. win/udp: make uv_udp_set_socket set UV_HANDLE_IPV6

    This patch makes uv_udp_set_socket responsible for setting the
    UV_HANDLE_IPV6 flag.
    
    In addition, this patch fixes some minor style issues.
    piscisaureus committed Jan 30, 2013
    Copy the full SHA
    6b1cca3 View commit details
    Browse the repository at this point in the history
  7. Copy the full SHA
    36883f2 View commit details
    Browse the repository at this point in the history
  8. win: get rid of early ipv6 support detection

    No longer explictly check wheter an IPv6 stack is present when the user
    tries to use IPV6 sockets. Instead realy on the operating system
    to report the lack of protocol support via appropriate error messages.
    piscisaureus committed Jan 30, 2013
    Copy the full SHA
    034ea31 View commit details
    Browse the repository at this point in the history