Defines | |
#define | SVN_CONFIG_REALMSTRING_KEY "svn:realmstring" |
A hash-key pointing to a realmstring. More... | |
Functions | |
svn_error_t * | svn_config_read_auth_data (apr_hash_t **hash, const char *cred_kind, const char *realmstring, const char *config_dir, apr_pool_t *pool) |
Use cred_kind and realmstring to locate a file within the ~/.subversion/auth/ area. More... | |
svn_error_t * | svn_config_write_auth_data (apr_hash_t *hash, const char *cred_kind, const char *realmstring, const char *config_dir, apr_pool_t *pool) |
Use cred_kind and realmstring to create or overwrite a file within the ~/.subversion/auth/ area. More... |
|
A hash-key pointing to a realmstring. Every file containing authentication data should have this key. Definition at line 314 of file svn_config.h. |
|
Use cred_kind and realmstring to locate a file within the ~/.subversion/auth/ area. If the file exists, initialize *hash and load the file contents into the hash, using pool. If the file doesn't exist, set *hash to NULL. If config_dir is not NULL it specifies a directory from which to read the config overriding all other sources.
Besides containing the original credential fields, the hash will also contain
The hashtable will contain |
|
Use cred_kind and realmstring to create or overwrite a file within the ~/.subversion/auth/ area. Write the contents of hash into the file. If config_dir is not NULL it specifies a directory to read the config overriding all other sources.
Also, add realmstring to the file, with key
The hashtable must contain |