aboutsummaryrefslogtreecommitdiff
path: root/opacket.h
diff options
context:
space:
mode:
Diffstat (limited to 'opacket.h')
-rw-r--r--opacket.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/opacket.h b/opacket.h
index 16322ec6fbf0..c487f4f40d68 100644
--- a/opacket.h
+++ b/opacket.h
@@ -133,9 +133,6 @@ void packet_disconnect(const char *, ...)
ssh_packet_get_input(active_state)
#define packet_get_output() \
ssh_packet_get_output(active_state)
-#define packet_set_compress_hooks(ctx, allocfunc, freefunc) \
- ssh_packet_set_compress_hooks(active_state, ctx, \
- allocfunc, freefunc);
#define packet_check_eom() \
ssh_packet_check_eom(active_state)
#define set_newkeys(mode) \
@@ -156,5 +153,9 @@ void packet_disconnect(const char *, ...)
ssh_packet_set_rekey_limits(active_state, x, y)
#define packet_get_bytes(x,y) \
ssh_packet_get_bytes(active_state, x, y)
+#define packet_set_mux() \
+ ssh_packet_set_mux(active_state)
+#define packet_get_mux() \
+ ssh_packet_get_mux(active_state)
#endif /* _OPACKET_H */