Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | Enable -Wconversion | Craig Tiller | 2015-09-10 |
| | |||
* | clang-format all source | Craig Tiller | 2015-08-18 |
| | |||
* | Return normalized IPv4 addresses from grpc_sockaddr_to_uri(). | Paul Marks | 2015-08-04 |
| | | | | | Users of the high-level API should not care whether we're using AF_INET or AF_INET6 sockets internally. | ||
* | Add grpc_call_get_peer | Craig Tiller | 2015-07-20 |
| | |||
* | Expose gpr_asprintf and gpr_strdup | Masood Malekghassemi | 2015-06-03 |
| | |||
* | Remove all uses of __FUNCTION__ | Craig Tiller | 2015-05-24 |
| | |||
* | Add missing new-lines at end of file | Craig Tiller | 2015-02-18 |
| | |||
* | Update copyright to 2015 | Craig Tiller | 2015-02-18 |
| | |||
* | Unix domain socket support | Craig Tiller | 2015-02-13 |
| | |||
* | Adding Windows tcp server code. | Nicolas "Pixel" Noble | 2015-02-05 |
| | |||
* | Fixing a few winsocket misuses. | Nicolas "Pixel" Noble | 2015-01-24 |
| | |||
* | Move string.h to internal code | Craig Tiller | 2015-01-23 |
| | |||
* | Return bound port number from grpc_server_add_http2_port. | ctiller | 2015-01-12 |
| | | | | | | | | Allows tests to bind to port 0 and still have clients connect to them. Change on 2015/01/12 by ctiller <ctiller@google.com> ------------- Created by MOE: http://code.google.com/p/moe-java MOE_MIGRATED_REVID=83800669 | ||
* | Introducing iomgr. | ctiller | 2014-12-09 |
Move eventmanager and platform dependent endpoint functionality into a single library called 'iomgr'. This is primarily to prepare for a Windows port - where posix socket semantics lead to poor quality code. Mostly this is a code movement CL, with some small changes to help prepare the way for porting: - em style fd objects can only be held internally in iomgr, and own their memory - added grpc_iomgr_create_endpoint_pair() to accomodate the common pattern of creating a tcp endpoint from the output of socketpair - this will help keep our tests portable - separated em alarm interface into a separate file, as this part of event manager is needed higher up the stack - made the eventmanager bits a true singleton, simplifying API's across the stack as there's no longer a reason to carry a pointer there. Initial design document is here: https://docs.google.com/document/d/1VmafcHvvrP5kwtQkz84R5yXF7u7fW-9Pn0bkSUQHDt8/edit?disco=AAAAARNByxg Change on 2014/12/09 by ctiller <ctiller@google.com> ------------- Created by MOE: http://code.google.com/p/moe-java MOE_MIGRATED_REVID=81716456 |