Skip to content

Commit

Permalink
afk.epic: Expose ep function to call send_cmd()
Browse files Browse the repository at this point in the history
Signed-off-by: Eileen Yoon <[email protected]>
  • Loading branch information
eiln authored and marcan committed Oct 30, 2024
1 parent 48a9202 commit 5c5d396
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions proxyclient/m1n1/fw/afk/epic.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 5c5d396

Please sign in to comment.