source: trunk/third/moira/include/mrclient.h @ 23740

Revision 23740, 600 bytes checked in by broder, 15 years ago (diff)
In moira: * New CVS snapshot (Trac: #195) * Drop patches that have been incorporated upstream. * Update to build without krb4 on systems that no longer have it. This doesn't build yet on squeeze, which lacks a krb4 library, but I'm committing now before I start hacking away at a patch to fix that.
Line 
1/* $Id: mrclient.h,v 1.4 2000-08-25 23:06:36 zacheiss Exp $
2 *
3 * Copyright (C) 1999 by the Massachusetts Institute of Technology
4 *
5 */
6
7#ifndef _mrclient_h_
8#define _mrclient_h_
9
10#define MRCL_SUCCESS            0
11#define MRCL_FAIL               1
12#define MRCL_REJECT             2
13#define MRCL_WARN               3
14#define MRCL_ENOMEM             4
15#define MRCL_MOIRA_ERROR        5
16#define MRCL_AUTH_ERROR         6
17
18int mrcl_connect(char *server, char *client, int version, int auth);
19char *mrcl_krb_user(void);
20char *partial_canonicalize_hostname(char *s);
21
22int mrcl_validate_pobox_smtp(char *user, char *address, char **ret);
23
24#endif /* _mrclient_h_ */
Note: See TracBrowser for help on using the repository browser.