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: d17bfc617e0f
Choose a base ref
...
head repository: joyent/libuv
compare: 0d43992c3b26
Choose a head ref
  • 3 commits
  • 17 files changed
  • 1 contributor

Commits on Jul 4, 2014

  1. common: use common uv__count_bufs code

    Until now it was reimplemented in 2 different places (unix, win).
    txdv authored and saghul committed Jul 4, 2014
    Copy the full SHA
    f63e073 View commit details
    Browse the repository at this point in the history
  2. unix, win: add send_queue_size and send_queue_count to uv_udp_t

    This functionality is present in stream and uv_udp_t has a queue
    as well so it makes sense for udp to have a send_write_size.
    Since udp sends entire messages atomically, the send_queue_count field
    lets the user determine how many messages are there left to send.
    txdv authored and saghul committed Jul 4, 2014
    Copy the full SHA
    b769484 View commit details
    Browse the repository at this point in the history
  3. unix, win: add uv_udp_try_send

    The function returns UV_EAGAIN if the queue is not empty and
    the message couldn't be sent immediately.
    txdv authored and saghul committed Jul 4, 2014
    8
    Copy the full SHA
    0d43992 View commit details
    Browse the repository at this point in the history