1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-23 17:34:34 +03:00
samba-mirror/librpc/idl/fsrvp_state.idl
David Disseldorp b773136f9e librpc: add FSRVP server state idl
FSRVP server state must be retained persistently. This change adds IDL
definitions for the share map, shadow-copy and shadow-copy set types,
which will be used for marshalling and unmarshalling state alongside
database storage or retrieval.

Signed-off-by: David Disseldorp <ddiss@samba.org>
Reviewed-by: Jeremy Allison <jra@samba.org>
2015-03-31 18:40:24 +02:00

37 lines
969 B
Plaintext

#include "idl_types.h"
[
pointer_default(unique)
]
interface fsrvp_state
{
/* database format version, NOT the FSRVP protocol version */
const uint32 FSRVP_STATE_DB_VERSION = 1;
/*
* These data structures describe the FSRVP server on-disk format. Any
* changes should result in a new DB version number, and corresponding
* upgrade function.
*/
typedef [public] struct {
[flag(STR_UTF8|STR_NULLTERM)] string share_name;
[flag(STR_UTF8|STR_NULLTERM)] string sc_share_name;
[flag(STR_UTF8|STR_NULLTERM)] string sc_share_comment;
boolean32 is_exposed;
} fsrvp_state_smap;
typedef [public] struct {
[flag(STR_UTF8|STR_NULLTERM)] string id_str;
[flag(STR_UTF8|STR_NULLTERM)] string volume_name;
[flag(STR_UTF8|STR_NULLTERM)] string sc_path;
time_t create_ts;
int smaps_count;
} fsrvp_state_sc;
typedef [public] struct {
[flag(STR_UTF8|STR_NULLTERM)] string id_str;
int state;
int context;
int scs_count;
} fsrvp_state_sc_set;
}