aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/cpp/interop/server_main.cc
diff options
context:
space:
mode:
authorGravatar David Garcia Quintas <dgq@google.com>2016-03-28 16:57:23 -0700
committerGravatar David Garcia Quintas <dgq@google.com>2016-03-28 16:57:23 -0700
commit3c05db5b0b4fd5fcd5f93ab7d0844ade41971fc2 (patch)
treef54c8bd51ae91ec08877270d8e0c2e972babf0c5 /test/cpp/interop/server_main.cc
parent67c0d04d052b43b8e29fd0de0abf883f61375fcd (diff)
parent9a0f14ba9959ac0cbf672282f8376b4e4e3b14dc (diff)
Merge branch 'master' of github.com:grpc/grpc into lb_policies_new_interface
Diffstat (limited to 'test/cpp/interop/server_main.cc')
-rw-r--r--test/cpp/interop/server_main.cc14
1 files changed, 7 insertions, 7 deletions
diff --git a/test/cpp/interop/server_main.cc b/test/cpp/interop/server_main.cc
index 18ac35d551..8a718701c3 100644
--- a/test/cpp/interop/server_main.cc
+++ b/test/cpp/interop/server_main.cc
@@ -40,19 +40,19 @@
#include <thread>
#include <gflags/gflags.h>
-#include <grpc/grpc.h>
-#include <grpc/support/log.h>
-#include <grpc/support/useful.h>
+#include <grpc++/security/server_credentials.h>
#include <grpc++/server.h>
#include <grpc++/server_builder.h>
#include <grpc++/server_context.h>
-#include <grpc++/security/server_credentials.h>
+#include <grpc/grpc.h>
+#include <grpc/support/log.h>
+#include <grpc/support/useful.h>
-#include "test/cpp/interop/server_helper.h"
-#include "test/cpp/util/test_config.h"
-#include "src/proto/grpc/testing/test.grpc.pb.h"
#include "src/proto/grpc/testing/empty.grpc.pb.h"
#include "src/proto/grpc/testing/messages.grpc.pb.h"
+#include "src/proto/grpc/testing/test.grpc.pb.h"
+#include "test/cpp/interop/server_helper.h"
+#include "test/cpp/util/test_config.h"
DEFINE_bool(use_tls, false, "Whether to use tls.");
DEFINE_int32(port, 0, "Server port.");