Release ricxappframe 3.0.1
[ric-plt/xapp-frame-py.git] / ricxappframe / rmr / rmr.py
index 34c6b00..0e57200 100644 (file)
@@ -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
     -------