Interface

FridaAuthenticationService

Description [src]

interface Frida.AuthenticationService : GObject.Object

Authenticates clients connecting to a FridaPortalService or FridaControlService.

Prerequisite

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

Instance methods

frida_authentication_service_authenticate

Authenticates a client by its token.

frida_authentication_service_authenticate_finish

Authenticates a client by its token.

Interface structure

struct FridaAuthenticationServiceIface {
  void (* authenticate) (
    FridaAuthenticationService* self,
    const gchar* token,
    GCancellable* cancellable,
    GAsyncReadyCallback _callback_,
    void* _callback__target
  );
  gchar* (* authenticate_finish) (
    FridaAuthenticationService* self,
    GAsyncResult* _res_,
    GError** error
  );
  
}

No description available.

Interface members
authenticate
void (* authenticate) (
    FridaAuthenticationService* self,
    const gchar* token,
    GCancellable* cancellable,
    GAsyncReadyCallback _callback_,
    void* _callback__target
  )
 

No description available.

authenticate_finish
gchar* (* authenticate_finish) (
    FridaAuthenticationService* self,
    GAsyncResult* _res_,
    GError** error
  )
 

No description available.

Virtual methods

Frida.AuthenticationService.authenticate

Authenticates a client by its token.

Frida.AuthenticationService.authenticate_finish

Authenticates a client by its token.