mirror of
https://gitlab.gnome.org/GNOME/libsecret.git
synced 2024-12-22 20:58:52 +00:00
8417d8c98b
* Handled entirely on the client side. * Schema names are stored in an xdg:schema attribute * Add option to turn of matching on schema names. So that we can lookup items stored by libgnome-keyring and others * Change schema 'identifier' to 'name' * Fix up tests
32 lines
959 B
C
32 lines
959 B
C
/* libsecret - GLib wrapper for Secret Service
|
|
*
|
|
* Copyright 2012 Stef Walter
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU Lesser General Public License as published
|
|
* by the Free Software Foundation; either version 2 of the licence or (at
|
|
* your option) any later version.
|
|
*
|
|
* See the included COPYING file for more information.
|
|
*/
|
|
|
|
#include "config.h"
|
|
|
|
#include "secret-schema.h"
|
|
|
|
static const SecretSchema network_schema = {
|
|
"org.gnome.keyring.NetworkPassword",
|
|
SECRET_SCHEMA_DONT_MATCH_NAME,
|
|
{
|
|
{ "user", SECRET_SCHEMA_ATTRIBUTE_STRING },
|
|
{ "domain", SECRET_SCHEMA_ATTRIBUTE_STRING },
|
|
{ "object", SECRET_SCHEMA_ATTRIBUTE_STRING },
|
|
{ "protocol", SECRET_SCHEMA_ATTRIBUTE_STRING },
|
|
{ "port", SECRET_SCHEMA_ATTRIBUTE_INTEGER },
|
|
{ "server", SECRET_SCHEMA_ATTRIBUTE_STRING },
|
|
{ "NULL", 0 },
|
|
}
|
|
};
|
|
|
|
const SecretSchema * SECRET_SCHEMA_COMPAT_NETWORK = &network_schema;
|