Interface

FridaRpcPeer

Description [src]

interface Frida.RpcPeer : GObject.Object

A transport over which an FridaRpcClient sends and receives RPC messages.

Prerequisite

In order to implement RpcPeer, your type must inherit fromGObject.

Instance methods

frida_rpc_peer_post_rpc_message

Posts an RPC message to the peer.

frida_rpc_peer_post_rpc_message_finish

Posts an RPC message to the peer.

Interface structure

struct FridaRpcPeerIface {
  void (* post_rpc_message) (
    FridaRpcPeer* self,
    const gchar* json,
    GBytes* data,
    GCancellable* cancellable,
    GAsyncReadyCallback _callback_,
    void* _callback__target
  );
  void (* post_rpc_message_finish) (
    FridaRpcPeer* self,
    GAsyncResult* _res_,
    GError** error
  );
  
}

No description available.

Interface members
post_rpc_message
void (* post_rpc_message) (
    FridaRpcPeer* self,
    const gchar* json,
    GBytes* data,
    GCancellable* cancellable,
    GAsyncReadyCallback _callback_,
    void* _callback__target
  )
 

No description available.

post_rpc_message_finish
void (* post_rpc_message_finish) (
    FridaRpcPeer* self,
    GAsyncResult* _res_,
    GError** error
  )
 

No description available.

Virtual methods

Frida.RpcPeer.post_rpc_message

Posts an RPC message to the peer.

Frida.RpcPeer.post_rpc_message_finish

Posts an RPC message to the peer.