From 5c5d3966f3d45e6cb01c34ba8de04baa0d8dbe14 Mon Sep 17 00:00:00 2001 From: Eileen Yoon Date: Tue, 30 Jan 2024 10:46:40 +0900 Subject: [PATCH] afk.epic: Expose ep function to call send_cmd() Signed-off-by: Eileen Yoon --- proxyclient/m1n1/fw/afk/epic.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/proxyclient/m1n1/fw/afk/epic.py b/proxyclient/m1n1/fw/afk/epic.py index 26181afd4..090a06cfe 100644 --- a/proxyclient/m1n1/fw/afk/epic.py +++ b/proxyclient/m1n1/fw/afk/epic.py @@ -388,6 +388,9 @@ def send_roundtrip(self, chan, call, **kwargs): def send_notify(self, chan, call, **kwargs): return self.serv_map[chan].send_notify(call.TYPE, call.ARGS.build(call.args), **kwargs) + def send_cmd(self, chan, type, data, retlen=None, **kwargs): + return self.serv_map[chan].send_cmd(type, data, retlen, **kwargs) + def send_epicv4(self, chan, ptype, category, type, seq, data, inline_len=0, **kwargs): hdr = Container() hdr.channel = chan