summaryrefslogtreecommitdiff
path: root/test/c_glib
diff options
context:
space:
mode:
authorJames E. King, III <jking@apache.org>2017-11-17 14:41:46 -0500
committerJames E. King, III <jking@apache.org>2017-11-18 21:10:40 -0500
commit58402ff6a71f00f9d61a9676bdabd3e5bbe9ea3f (patch)
tree79937c784bdb949254b23f0455433fd57522627c /test/c_glib
parent87ad2bcaaa5a9fe224ad7a9826b676ca9721ddd1 (diff)
downloadthrift-58402ff6a71f00f9d61a9676bdabd3e5bbe9ea3f.tar.gz
THRIFT-2013: add multiplex server and client test support to cpp language
add multiplex client test support to csharp and java languages fix a bug in the server-side header protocol factory fix a bug in the cpp SSL server socket implementation remove unnecessary sleep in cpp server testOneway This closes #1414
Diffstat (limited to 'test/c_glib')
-rw-r--r--test/c_glib/src/thrift_second_service_handler.c13
1 files changed, 0 insertions, 13 deletions
diff --git a/test/c_glib/src/thrift_second_service_handler.c b/test/c_glib/src/thrift_second_service_handler.c
index c46437211..66ac7bca2 100644
--- a/test/c_glib/src/thrift_second_service_handler.c
+++ b/test/c_glib/src/thrift_second_service_handler.c
@@ -50,17 +50,6 @@ second_service_handler_secondtest_string (TTestSecondServiceIf *iface,
return TRUE;
}
-gboolean
-second_service_handler_blah_blah (TTestSecondServiceIf *iface, GError **error)
-{
- THRIFT_UNUSED_VAR (iface);
- THRIFT_UNUSED_VAR (error);
-
- printf ("blahBlah()\n");
-
- return TRUE;
-}
-
static void
second_service_handler_init (SecondServiceHandler *self)
{
@@ -76,7 +65,5 @@ second_service_handler_class_init (SecondServiceHandlerClass *klass)
base_class->secondtest_string =
second_service_handler_secondtest_string;
- base_class->blah_blah =
- second_service_handler_blah_blah;
}