Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F120825180
mupdate-client.h
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Authored By
Unknown
Size
4 KB
Referenced Files
None
Subscribers
None
mupdate-client.h
View Options
/* mupdate-client.h -- cyrus murder database clients
*
* Copyright (c) 1994-2008 Carnegie Mellon University. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
*
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in
* the documentation and/or other materials provided with the
* distribution.
*
* 3. The name "Carnegie Mellon University" must not be used to
* endorse or promote products derived from this software without
* prior written permission. For permission or any legal
* details, please contact
* Carnegie Mellon University
* Center for Technology Transfer and Enterprise Creation
* 4615 Forbes Avenue
* Suite 302
* Pittsburgh, PA 15213
* (412) 268-7393, fax: (412) 268-7395
* innovation@andrew.cmu.edu
*
* 4. Redistributions of any form whatsoever must retain the following
* acknowledgment:
* "This product includes software developed by Computing Services
* at Carnegie Mellon University (http://www.cmu.edu/computing/)."
*
* CARNEGIE MELLON UNIVERSITY DISCLAIMS ALL WARRANTIES WITH REGARD TO
* THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
* AND FITNESS, IN NO EVENT SHALL CARNEGIE MELLON UNIVERSITY BE LIABLE
* FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN
* AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING
* OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*
* $Id: mupdate-client.h,v 1.18 2010/01/06 17:01:37 murch Exp $
*/
#ifndef INCLUDED_MUPDATE_CLIENT_H
#define INCLUDED_MUPDATE_CLIENT_H
#include
<sasl/sasl.h>
#define FNAME_MUPDATE_TARGET_SOCK "/socket/mupdate.target"
typedef
struct
mupdate_handle_s
mupdate_handle
;
/* connect & authenticate to an mupdate server */
int
mupdate_connect
(
const
char
*
server
,
const
char
*
port
,
mupdate_handle
**
handle
,
sasl_callback_t
*
cbs
);
/* disconnect from mupdate server */
void
mupdate_disconnect
(
mupdate_handle
**
h
);
/* activate a mailbox */
int
mupdate_activate
(
mupdate_handle
*
handle
,
const
char
*
mailbox
,
const
char
*
server
,
const
char
*
acl
);
/* reserve a piece of namespace */
int
mupdate_reserve
(
mupdate_handle
*
handle
,
const
char
*
mailbox
,
const
char
*
server
);
/* deactivate a mailbox (ACTIVE->RESERVE) */
int
mupdate_deactivate
(
mupdate_handle
*
handle
,
const
char
*
mailbox
,
const
char
*
server
);
/* delete a mailbox */
int
mupdate_delete
(
mupdate_handle
*
handle
,
const
char
*
mailbox
);
enum
mbtype
{
ACTIVE
,
RESERVE
};
/* mailbox data structure */
struct
mupdate_mailboxdata
{
const
char
*
mailbox
;
const
char
*
server
;
const
char
*
acl
;
enum
mbtype
t
;
};
/* does a given mailbox exist? 1 if false, 0 if true, -1 if error,
* "target" gets pointed at a struct mudate_mailboxdata that is only valid
* until the next mupdate_* call on this mupdate_handle.
*/
int
mupdate_find
(
mupdate_handle
*
handle
,
const
char
*
mailbox
,
struct
mupdate_mailboxdata
**
target
);
/* Callbacks for mupdate_scarf and mupdate_list */
/* cmd is one of DELETE, MAILBOX, RESERVE */
/* context is as provided to mupdate_scarf */
/* FIXME/xxx: "cmd" can probabally go away and instead
* we just use the t in mdata */
typedef
int
(
*
mupdate_callback
)(
struct
mupdate_mailboxdata
*
mdata
,
const
char
*
cmd
,
void
*
context
);
/* perform an MUPDATE LIST operation (callback is called for
* each remote mailbox) */
int
mupdate_list
(
mupdate_handle
*
handle
,
mupdate_callback
callback
,
const
char
*
prefix
,
void
*
context
);
/* ping the mupdate server with a NOOP. */
int
mupdate_noop
(
mupdate_handle
*
handle
,
mupdate_callback
callback
,
void
*
context
);
/* ping a local slave */
void
kick_mupdate
(
void
);
#endif
File Metadata
Details
Attached
Mime Type
text/x-c
Expires
Fri, Apr 24, 10:34 AM (10 h, 4 m)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
3e/23/a00bb201d37a31aca079afdda9b2
Default Alt Text
mupdate-client.h (4 KB)
Attached To
Mode
R111 cyrus-imapd
Attached
Detach File
Event Timeline