summaryrefslogtreecommitdiffstats
path: root/hicn-light/src/io/ioOperations.c
diff options
context:
space:
mode:
Diffstat (limited to 'hicn-light/src/io/ioOperations.c')
-rw-r--r--hicn-light/src/io/ioOperations.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/hicn-light/src/io/ioOperations.c b/hicn-light/src/io/ioOperations.c
index bbc8cec91..b40b51d76 100644
--- a/hicn-light/src/io/ioOperations.c
+++ b/hicn-light/src/io/ioOperations.c
@@ -28,6 +28,12 @@ bool ioOperations_Send(IoOperations *ops, const Address *nexthop,
return ops->send(ops, nexthop, message);
}
+bool ioOperations_SendCommandResponse(IoOperations *ops,
+ struct iovec *message) {
+ return ops->sendCommandResponse(ops, message);
+}
+
+
const Address *ioOperations_GetRemoteAddress(const IoOperations *ops) {
return ops->getRemoteAddress(ops);
}