mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2026-01-02 06:30:12 +01:00
docs: fix introspection annotation for secret agent callbacks (bgo #686915)
This commit is contained in:
parent
9818415ad7
commit
80734d67f3
1 changed files with 6 additions and 6 deletions
|
|
@ -101,7 +101,7 @@ typedef struct {
|
|||
/**
|
||||
* NMSecretAgentGetSecretsFunc:
|
||||
* @agent: the secret agent object
|
||||
* @connection: the connection for which secrets were requested
|
||||
* @connection: (transfer none): the connection for which secrets were requested
|
||||
* @secrets: (element-type utf8 GLib.HashTable): the #GHashTable containing
|
||||
* the requested secrets in the same format as an #NMConnection hash (as
|
||||
* created by nm_connection_to_hash() for example). Each key in @secrets
|
||||
|
|
@ -109,7 +109,7 @@ typedef struct {
|
|||
* and each value should be a #GHashTable. The sub-hashes map string:#GValue
|
||||
* where the string is the setting property name (like "psk") and the value
|
||||
* is the secret
|
||||
* @error: if the secrets request failed, give a descriptive error here
|
||||
* @error: if the secrets request failed, give a descriptive error here
|
||||
* @user_data: caller-specific data to be passed to the function
|
||||
*
|
||||
* Called as a result of a request by NM to retrieve secrets. When the
|
||||
|
|
@ -150,8 +150,8 @@ typedef void (*NMSecretAgentGetSecretsFunc) (NMSecretAgent *agent,
|
|||
/**
|
||||
* NMSecretAgentSaveSecretsFunc:
|
||||
* @agent: the secret agent object
|
||||
* @connection: the connection for which secrets were to be saved
|
||||
* @error: if the saving secrets failed, give a descriptive error here
|
||||
* @connection: (transfer none): the connection for which secrets were to be saved
|
||||
* @error: if the saving secrets failed, give a descriptive error here
|
||||
* @user_data: caller-specific data to be passed to the function
|
||||
*
|
||||
* Called as a result of a request by NM to save secrets. When the
|
||||
|
|
@ -166,8 +166,8 @@ typedef void (*NMSecretAgentSaveSecretsFunc) (NMSecretAgent *agent,
|
|||
/**
|
||||
* NMSecretAgentDeleteSecretsFunc:
|
||||
* @agent: the secret agent object
|
||||
* @connection: the connection for which secrets were to be deleted
|
||||
* @error: if the deleting secrets failed, give a descriptive error here
|
||||
* @connection: (transfer none): the connection for which secrets were to be deleted
|
||||
* @error: if the deleting secrets failed, give a descriptive error here
|
||||
* @user_data: caller-specific data to be passed to the function
|
||||
*
|
||||
* Called as a result of a request by NM to delete secrets. When the
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue