Added a tiny comment header and TODOs.

pull/6924/head
David Garcia Quintas 9 years ago
parent ea11d168c7
commit 8b3b97f99d
  1. 8
      src/core/ext/lb_policy/grpclb/grpclb.c
  2. 2
      test/cpp/grpclb/grpclb_test.cc

@ -31,6 +31,14 @@
*
*/
/** Implementation of the gRPC LB policy.
*
* \see https://github.com/grpc/grpc/blob/master/doc/load-balancing.md */
/* TODO(dgq):
* - Implement LB service forwarding (point 2c. in the doc's diagram).
*/
#include <string.h>
#include <grpc/byte_buffer_reader.h>

@ -68,6 +68,8 @@ extern "C" {
// - Send identical serverlist update
// - Test reception of invalid serverlist
// - Test pinging
// - Test against a non-LB server. That server should return UNIMPLEMENTED and
// the call should fail.
namespace grpc {
namespace {

Loading…
Cancel
Save