summaryrefslogtreecommitdiff
path: root/components/proto_bert/src
diff options
context:
space:
mode:
authorMagnus Feuer <mfeuer@jaguarlandrover.com>2015-04-14 18:35:24 -0700
committerMagnus Feuer <mfeuer@jaguarlandrover.com>2015-04-14 18:35:24 -0700
commitc7d4c511edacca97c93eed4d4cc99eb9978b5ce2 (patch)
treed8513a6073ccab715c4592ef40f05f5d999150a6 /components/proto_bert/src
parent2c1db978b9ca2679624bd50ee9f86ca8404e3c7b (diff)
downloadrvi_core-c7d4c511edacca97c93eed4d4cc99eb9978b5ce2.tar.gz
Added protocol module decoder to each message transmitted
Diffstat (limited to 'components/proto_bert/src')
-rw-r--r--components/proto_bert/src/proto_bert_rpc.erl2
1 files changed, 1 insertions, 1 deletions
diff --git a/components/proto_bert/src/proto_bert_rpc.erl b/components/proto_bert/src/proto_bert_rpc.erl
index 3baf356..ffc13c1 100644
--- a/components/proto_bert/src/proto_bert_rpc.erl
+++ b/components/proto_bert/src/proto_bert_rpc.erl
@@ -129,7 +129,7 @@ handle_call({rvi, send_message,
Data = term_to_binary({ ServiceName, Timeout, Parameters, Signature, Certificate }),
- Res = DataLinkMod:send_data(St#st.cs, ServiceName, DataLinkOpts, Data),
+ Res = DataLinkMod:send_data(St#st.cs, ?MODULE, ServiceName, DataLinkOpts, Data),
{ reply, Res, St };