aboutsummaryrefslogtreecommitdiffhomepage
Commit message (Collapse)AuthorAge
* add support for per-call metadataGravatar Jan Tattermusch2015-07-15
|
* adjust C# generator to match the new APIGravatar Jan Tattermusch2015-07-15
|
* renaming stub to client and refactoring metadata classGravatar Jan Tattermusch2015-07-15
|
* Merge pull request #2419 from jtattermusch/nuget_versioning_simplificationGravatar Michael Lumish2015-07-15
|\ | | | | Nuget versioning simplification
| * make build_packages.bat provide version of grpc.native.csharp_ext dependencyGravatar Jan Tattermusch2015-07-15
| |
| * introduce Version.cs as single source of truth of gRPC C# versionGravatar Jan Tattermusch2015-07-15
| |
| * pick up nuget package version from cmdline param and fix nuget buildGravatar Jan Tattermusch2015-07-15
|/
* Merge pull request #2418 from jtattermusch/csharp_healthcheckingGravatar Michael Lumish2015-07-15
|\ | | | | C# health service
| * C# health checking supportGravatar Jan Tattermusch2015-07-15
|/
* Merge pull request #2453 from tbetbetbe/grpc-ruby-update-requirements-commentGravatar Michael Lumish2015-07-15
|\ | | | | Updates the requirements comment before releasing on the release branch
| * Updates the requirements comment before releasing on the release branchGravatar Tim Emiola2015-07-15
|/
* Merge pull request #2450 from dgquintas/frame_data_one_byteGravatar Yang Gao2015-07-15
|\ | | | | Fixed wrong frame parsing
* \ Merge pull request #2428 from vjpai/gcc44_issuesGravatar Yang Gao2015-07-14
|\ \ | | | | | | Fixes for older C++ compilers (remove lambdas, brace init, and nullptr ambiguity)
| | * Fixed wrong frame parsingGravatar David Garcia Quintas2015-07-14
| |/ |/|
| * override and finalGravatar Vijay Pai2015-07-14
| |
* | Merge pull request #2332 from jtattermusch/implicit_initialize_rebasedGravatar Michael Lumish2015-07-14
|\ \ | | | | | | Get rid of explicit GrpcEnvironment.Initialize
* \ \ Merge pull request #2438 from stanley-cheung/update_homebrew_php_ext_dirGravatar Michael Lumish2015-07-14
|\ \ \ | | | | | | | | Update homebrew PHP extension location
* \ \ \ Merge pull request #2251 from nathanielmanistaatgoogle/linksGravatar Masood Malekghassemi2015-07-14
|\ \ \ \ | | | | | | | | | | links interface and gRPC-on-wire implementation
| | * | | regexGravatar Stanley Cheung2015-07-14
| | | | |
| | | | * Addressing outstanding typos and commentsGravatar Vijay Pai2015-07-14
| | | | | | | | | | | | | | | | | | | | Clang-format of changed files
| | | | * Remove reference to nullptr to avoid compiler seeing ambiguity in gcc-4.4Gravatar vjpai2015-07-14
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | build. The issue is that gcc below 4.6 require us to explicitly define nullptr, and our explicit definition allows a potential confusion between nullptr->unique_ptr<string> and nullptr->char *->grpc::string->unique_ptr<string>
| | * | | update homebrew php ext locationGravatar Stanley Cheung2015-07-14
| |/ / / |/| | |
* | | | Merge pull request #2335 from murgatroid99/node_error_codesGravatar Abhishek Kumar2015-07-14
|\ \ \ \ | | | | | | | | | | Made Node server respond with UNKNOWN for unspecified application errors
| | | | * Use rvalue ref return to avoid copyGravatar vjpai2015-07-14
| | | | |
* | | | | Merge pull request #2336 from murgatroid99/ruby_error_codesGravatar Abhishek Kumar2015-07-14
|\ \ \ \ \ | | | | | | | | | | | | Made ruby server return correct error code for unimplemented method
* \ \ \ \ \ Merge pull request #2065 from dklempner/retry_backoffGravatar Abhishek Kumar2015-07-14
|\ \ \ \ \ \ | | | | | | | | | | | | | | Update the connection backoff document with jitter.
| | | | | | * Remove brace initialization for gcc-4.4 compatibilityGravatar vjpai2015-07-14
| | | | | | |
| | | | | | * Remove lambda function with lambda capture to allow building with pre-lambdaGravatar vjpai2015-07-14
| |_|_|_|_|/ |/| | | | | | | | | | | | | | | | | compilers
* | | | | | Merge pull request #2421 from chai2010/masterGravatar Nicolas Noble2015-07-13
|\ \ \ \ \ \ | | | | | | | | | | | | | | fix build on windows
| * | | | | | fix build on windowsGravatar chai20102015-07-14
|/ / / / / /
* | | | | | Merge pull request #2416 from nicolasnoble/attempt-number-2-at-windows-kickGravatar Jan Tattermusch2015-07-13
|\ \ \ \ \ \ | | | | | | | | | | | | | | Better socket kick for Windows.
* \ \ \ \ \ \ Merge pull request #2414 from nicolasnoble/lets-debug-abortsGravatar Jan Tattermusch2015-07-13
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | Adding a handler for abort().
| | | * | | | | Add description of MIN_CONNECT_TIMEOUT and fix its pseudocode usage.Gravatar David Klempner2015-07-13
| | | | | | | |
* | | | | | | | Merge pull request #2415 from nicolasnoble/ignore-cached-filesGravatar Michael Lumish2015-07-13
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | Let's ignore our generated cache.mk from git.
| | | * | | | | | Better socket kick for Windows.Gravatar Nicolas "Pixel" Noble2015-07-14
| |_|/ / / / / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Now calling tcp_shutdown will in fact close the socket, which cascades into properly cleaning out all the pending requests. The tcp_server_windows's shutdown logic had to be rewritted (simplified) in order to take this into account.
| * | | | | | | Let's ignore our generated cache.mk from git.Gravatar Nicolas "Pixel" Noble2015-07-14
|/ / / / / / /
| * / / / / / Adding a handler for abort().Gravatar Nicolas "Pixel" Noble2015-07-14
|/ / / / / / | | | | | | | | | | | | | | | | | | We want to have a chance to debug a call to abort() in case we have a debugger attached.
| | | | * / links interface and gRPC-on-wire implementationGravatar Nathaniel Manista2015-07-13
| |_|_|/ / |/| | | | | | | | | | | | | | | | | | | This code branches out of the alpha/early_adopter code and begins building toward the beta API.
* | | | | Merge pull request #2399 from nicolasnoble/install-windows-exception-handlerGravatar Jan Tattermusch2015-07-13
|\ \ \ \ \ | | | | | | | | | | | | Install simple Windows exception handlers.
* \ \ \ \ \ Merge pull request #2400 from nicolasnoble/filter-output-for-timeoutsGravatar Craig Tiller2015-07-13
|\ \ \ \ \ \ | | | | | | | | | | | | | | Filtering stdout for JUnit report in case of timeouts.
* \ \ \ \ \ \ Merge pull request #2402 from jtattermusch/windows_polishingGravatar Nicolas Noble2015-07-12
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | Windows polishing
| * | | | | | | zero-out channel after creationGravatar Jan Tattermusch2015-07-12
| | | | | | | |
| * | | | | | | remove chatty log messages on windowsGravatar Jan Tattermusch2015-07-12
| | | | | | | |
* | | | | | | | Merge pull request #2398 from nicolasnoble/we-have-many-solutions-nowGravatar Jan Tattermusch2015-07-11
|\ \ \ \ \ \ \ \ | |/ / / / / / / |/| | | | | | | Fixing VS's documentation.
| | * | | | | | Filtering stdout for JUnit report in case of timeouts.Gravatar Nicolas "Pixel" Noble2015-07-12
| |/ / / / / / |/| | | | | | | | | | | | | | | | | | | | We're not properly filtering stdout in case we're timeouting. This generates invalid XML output.
* | | | | | | Merge pull request #2395 from nicolasnoble/tabs-are-evilGravatar Craig Tiller2015-07-11
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | Swapping tabs for spaces in generate_projects.py
* \ \ \ \ \ \ \ Merge pull request #2397 from nicolasnoble/faking-tools-under-windowsGravatar Craig Tiller2015-07-11
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | Faking tools target for win32.
* \ \ \ \ \ \ \ \ Merge pull request #2394 from nicolasnoble/disabling-cythonGravatar Craig Tiller2015-07-11
|\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | Disabling cython for now.
| | | | | * | | | | Install simple Windows exception handlers.Gravatar Nicolas "Pixel" Noble2015-07-12
| |_|_|_|/ / / / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | Will prevent Windows tests to display a pop-up message in case of a failure. Essential for Jenkins testing.
| | | | * | | | | Fixing VS's documentation.Gravatar Nicolas "Pixel" Noble2015-07-11
| |_|_|/ / / / / |/| | | | | | | | | | | | | | | | | | | | | | | The nuget command line tool can't find which solution we want to restore packages on. The documentation needs some update.