2012-03-18 12:45:54 +00:00
|
|
|
/* 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
|
2012-03-31 13:32:43 +00:00
|
|
|
* by the Free Software Foundation; either version 2.1 of the licence or (at
|
2012-03-18 12:45:54 +00:00
|
|
|
* your option) any later version.
|
|
|
|
*
|
|
|
|
* See the included COPYING file for more information.
|
2012-03-31 13:32:43 +00:00
|
|
|
*
|
|
|
|
* Author: Stef Walter <stefw@gnome.org>
|
2012-03-18 12:45:54 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
|
|
|
|
#include "secret-schema.h"
|
|
|
|
|
2012-06-25 12:12:00 +00:00
|
|
|
static const SecretSchema note_schema = {
|
|
|
|
"org.gnome.keyring.Note",
|
|
|
|
SECRET_SCHEMA_DONT_MATCH_NAME,
|
|
|
|
{
|
|
|
|
{ "NULL", 0 },
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
const SecretSchema * SECRET_SCHEMA_NOTE = ¬e_schema;
|
|
|
|
|
|
|
|
|
2012-03-18 12:45:54 +00:00
|
|
|
static const SecretSchema network_schema = {
|
|
|
|
"org.gnome.keyring.NetworkPassword",
|
2012-03-18 18:04:44 +00:00
|
|
|
SECRET_SCHEMA_DONT_MATCH_NAME,
|
2012-03-18 12:45:54 +00:00
|
|
|
{
|
|
|
|
{ "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 },
|
2012-03-30 11:56:20 +00:00
|
|
|
{ "authtype", SECRET_SCHEMA_ATTRIBUTE_STRING },
|
2012-03-18 12:45:54 +00:00
|
|
|
{ "NULL", 0 },
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
const SecretSchema * SECRET_SCHEMA_COMPAT_NETWORK = &network_schema;
|