aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/cpp/server/server.cc
Commit message (Collapse)AuthorAge
* make server tolerate deserialization failureGravatar Yang Gao2015-05-04
|
* merge with headGravatar Yang Gao2015-05-01
|\
* | Expose max message size at the server sideGravatar Yang Gao2015-04-30
| |
| * Merge comments. See below.Gravatar David Garcia Quintas2015-04-29
| | | | | | | | | | | | | | | | | | - Added ptag ignore annotation threshold - prefixed everythig with grpc_ - removed spurious annotations in channel_create.c and client_channel.c - removed stap_probes.h (it's generated from stap_probes.d by make) - Updated Makefile and its template with the right way to generate stap probe headers from its .d definition.
| * Merge remote-tracking branch 'upstream/master' into stapGravatar David Garcia Quintas2015-04-29
| |\ | |/ |/|
| * Integration of Systemtap (STAP) for profiling.Gravatar David Garcia Quintas2015-04-29
| | | | | | | | This commit includes a faulty Makefile to be fixed in a follow commit.
* | Few VS2010 fixes.Gravatar Nicolas Noble2015-04-28
|/ | | | | | | -) = delete isn't supported. Moving destructor out of scope. -) variadic templates aren't supported. Replacing emplace_back's construction. -) C++11's {} inline construction isn't supported. Adding temporary variables. -) std::list<> can't work on a non-declared class. Changing to a raw pointer.
* Merge branch 'master' of github.com:grpc/grpc into the-purge-2Gravatar Nicolas "Pixel" Noble2015-04-24
|\ | | | | | | | | | | | | Conflicts: src/cpp/client/channel.cc vsprojects/vs2010/grpc++.vcxproj vsprojects/vs2013/grpc++.vcxproj.filters
| * Mark proto ser/deser on server sideGravatar Vijay Pai2015-04-15
| |
* | Refactoring std::chrono out.Gravatar Nicolas Noble2015-04-08
|/
* Rewriting mutex, condition_variable, and thread.Gravatar Nicolas "Pixel" Noble2015-04-04
|
* Merge branch 'master' into cancelGravatar Yang Gao2015-03-30
|\
| * Elminate range-based fors and work around some other limitations in older ↵Gravatar Vijay Pai2015-03-24
| | | | | | | | compilers
* | Set cq_ on servercontextGravatar Yang Gao2015-03-22
|/
* Merge pull request #1093 from nicolasnoble/windowsGravatar Jan Tattermusch2015-03-19
|\ | | | | Various Windows fixes.
| * Various Windows fixes.Gravatar Nicolas Noble2015-03-19
| | | | | | | | | | | | | | | | | | | | | | | | | | | | -) using dupenv_s instead of getenv_s and calling strdup ourselves. -) few impossible-to-obtain if checks. -) various signed/unsigned casting. -) using time_t instead of time32_t -) checking output of FormatMessage for failures. -) don't redefine _WIN32_WINNT without undefining it first. -) fixed msvc's interlocked casting. -) renamed AddPort to AddListeningPort. -) added protobuf's third_party includes to search path. -) added a missing definition for inet_ntop in mingw32. -) removed useless declarations.
* | clang-format c++ codeGravatar Yang Gao2015-03-17
|/
* expose the server's cq through the generic service objectGravatar Yang Gao2015-03-16
|
* Merge branch 'master' into untypedAPIGravatar Yang Gao2015-03-16
|\
| * remove 'else' code, release lock by destructorGravatar Ruyi Wang2015-03-14
| |
* | wording changeGravatar Yang Gao2015-03-13
| |
* | Rename to AsyncGeneric*Gravatar Yang Gao2015-03-12
| |
* | resolve leak, now asan cleanGravatar Yang Gao2015-03-11
| |
* | Rename anonymous to generic globallyGravatar Yang Gao2015-03-11
| |
* | Expose server cq for polling incoming anonymous rpcsGravatar Yang Gao2015-03-11
| |
* | merge with upstream and resolve conflictGravatar Yang Gao2015-03-10
|\|
* | Service side should be done, it builds and existing tests passGravatar Yang Gao2015-03-06
| |
* | first sets of changes, it buildsGravatar Yang Gao2015-03-05
| |
| * Merge github.com:grpc/grpc into creditGravatar Craig Tiller2015-03-03
| |\ | |/ |/|
* | Merge pull request #920 from vjpai/async-probsGravatar Craig Tiller2015-03-03
|\ \ | | | | | | Solving crashes in async tests
| * | Solve the call-suppression problem earlier in the stackGravatar Vijay Pai2015-03-03
| | |
* | | Global replace google::protobuf::Message with grpc::protobuf::Message, all ↵Gravatar Yang Gao2015-03-03
| | | | | | | | | | | | tests passed
| * | Sanity checks for calls that were causing crashesGravatar Vijay Pai2015-03-02
|/ /
| * Merge github.com:grpc/grpc into creditGravatar Craig Tiller2015-03-02
| |\ | |/ |/|
* | Make it possible to compile with gcc4.6Gravatar Craig Tiller2015-02-26
| |
| * Merge github.com:grpc/grpc into creditGravatar Craig Tiller2015-02-24
| |\ | |/ |/|
* | Add Server.WaitGravatar Craig Tiller2015-02-24
| |
| * Update C++ server with new core APIGravatar Craig Tiller2015-02-23
|/ | | | And reflects the C++ API in ServerBuilder.
* Merge pull request #605 from vjpai/macGravatar Nicolas Noble2015-02-19
|\ | | | | Mac build is now ready
| * Some compilers expect class SyncRequest to be declared fully and not justGravatar vjpai2015-02-18
| | | | | | | | | | | | forward-declared before the constructor for Server because this is needed to manage exception handling for the class std::list that is templated on SyncRequest
* | Merge github.com:grpc/grpc into an-update-on-c++Gravatar Craig Tiller2015-02-18
|\|
* | Server side cancellation receive supportGravatar Craig Tiller2015-02-18
| |
| * Add missing new-lines at end of fileGravatar Craig Tiller2015-02-18
| |
* | Initial sketchGravatar Craig Tiller2015-02-18
| |
| * Update copyright to 2015Gravatar Craig Tiller2015-02-18
|/
* When the entire op fails, the recv_message is always discarded.Gravatar Yang Gao2015-02-17
|
* Deserialization success should not override earlier failureGravatar Yang Gao2015-02-17
|
* Fix end2end leaksGravatar Craig Tiller2015-02-12
|
* Async server dispatchGravatar Craig Tiller2015-02-12
|
* Async API progressGravatar Craig Tiller2015-02-12
|