X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=ricxappframe%2Frmr%2Frmr.py;h=0e57200a2270f301b990d103116f69926ab988a2;hb=refs%2Fchanges%2F62%2F10062%2F2;hp=34c6b00b7e1e766df158c016fa6caf46f9aac3fa;hpb=884192bf7ab8d637e8007760fbe50dbcdccd4671;p=ric-plt%2Fxapp-frame-py.git diff --git a/ricxappframe/rmr/rmr.py b/ricxappframe/rmr/rmr.py index 34c6b00..0e57200 100644 --- a/ricxappframe/rmr/rmr.py +++ b/ricxappframe/rmr/rmr.py @@ -685,7 +685,7 @@ def rmr_wh_call(vctx: c_void_p, whid: c_int, ptr_mbuf: POINTER(rmr_mbuf_t), call return _rmr_wh_call(vctx, whid, ptr_mbuf, call_id, max_wait) -_rmr_wh_close = _wrap_rmr_function('rmr_close', None, [c_void_p, c_int]) +_rmr_wh_close = _wrap_rmr_function('rmr_wh_close', None, [c_void_p, c_int]) def rmr_wh_close(vctx: c_void_p, whid: c_int): @@ -720,7 +720,8 @@ def rmr_wh_open(vctx: c_void_p, target: c_char_p) -> c_int: vctx: ctypes c_void_p Pointer to RMR context target: str - name/IP and port combination of the target process; e.g., "localhost:6123" + Pointer to bytes built from the target process host name and port number + as a string; e.g., b'localhost:4550' Returns -------