diff options
author | Tom Rondeau <tom@trondeau.com> | 2015-02-12 15:18:03 -0500 |
---|---|---|
committer | Tom Rondeau <tom@trondeau.com> | 2015-04-02 15:38:56 -0700 |
commit | 7240a8bdbbaefb8d9bd4ff489393f1b703776f8f (patch) | |
tree | 03faa6e1477d550e07f458dcbdc6c513f47588f9 /gnuradio-runtime/lib/controlport/rpcserver_selector.cc | |
parent | b1c1c6e0b2b9c1681ca2d528360aea9741d7a739 (diff) |
controlport: working controlport server using thrift.
Still needs integration of running the thrift compiler for cpp and py in build system.
Diffstat (limited to 'gnuradio-runtime/lib/controlport/rpcserver_selector.cc')
-rw-r--r-- | gnuradio-runtime/lib/controlport/rpcserver_selector.cc | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/gnuradio-runtime/lib/controlport/rpcserver_selector.cc b/gnuradio-runtime/lib/controlport/rpcserver_selector.cc index 692f151958..199610169f 100644 --- a/gnuradio-runtime/lib/controlport/rpcserver_selector.cc +++ b/gnuradio-runtime/lib/controlport/rpcserver_selector.cc @@ -30,6 +30,11 @@ bool rpcmanager::make_aggregator(false); #error TODO ICE #endif +#ifdef RPCSERVER_THRIFT +#include <gnuradio/rpcserver_booter_thrift.h> +rpcmanager::rpcserver_booter_register_helper<rpcserver_booter_thrift> boot_thrift; +#endif + #ifdef RPCSERVER_ERLANG #error TODO ERLANG #endif |