summaryrefslogtreecommitdiffstats
path: root/hicn-light/src/hicn/io/ioOperations.c
diff options
context:
space:
mode:
Diffstat (limited to 'hicn-light/src/hicn/io/ioOperations.c')
-rw-r--r--hicn-light/src/hicn/io/ioOperations.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/hicn-light/src/hicn/io/ioOperations.c b/hicn-light/src/hicn/io/ioOperations.c
index 53adc47c5..a9b763448 100644
--- a/hicn-light/src/hicn/io/ioOperations.c
+++ b/hicn-light/src/hicn/io/ioOperations.c
@@ -28,12 +28,11 @@ 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);
+bool ioOperations_SendIOVBuffer(IoOperations *ops, struct iovec *message,
+ size_t size) {
+ return ops->sendIOVBuffer(ops, message, size);
}
-
const Address *ioOperations_GetRemoteAddress(const IoOperations *ops) {
return ops->getRemoteAddress(ops);
}