~ubuntu-branches/ubuntu/karmic/firebird2.1/karmic

« back to all changes in this revision

Viewing changes to src/utilities/gsec/call_service.h

  • Committer: Bazaar Package Importer
  • Author(s): Damyan Ivanov
  • Date: 2008-05-26 23:59:25 UTC
  • Revision ID: james.westby@ubuntu.com-20080526235925-2pnqj6nxpppoeaer
Tags: upstream-2.1.0.17798-0.ds2
ImportĀ upstreamĀ versionĀ 2.1.0.17798-0.ds2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 *      PROGRAM:        Security data base manager
 
3
 *      MODULE:         call_service.h
 
4
 *      DESCRIPTION:    Invokes remote service manager to work with security DB.
 
5
 *
 
6
 *  The contents of this file are subject to the Initial
 
7
 *  Developer's Public License Version 1.0 (the "License");
 
8
 *  you may not use this file except in compliance with the
 
9
 *  License. You may obtain a copy of the License at
 
10
 *  http://www.ibphoenix.com/main.nfs?a=ibphoenix&page=ibp_idpl.
 
11
 *
 
12
 *  Software distributed under the License is distributed AS IS,
 
13
 *  WITHOUT WARRANTY OF ANY KIND, either express or implied.
 
14
 *  See the License for the specific language governing rights
 
15
 *  and limitations under the License.
 
16
 *
 
17
 *  The Original Code was created by Alexander Peshkoff (peshkoff@mail.ru)
 
18
 *  for the Firebird Open Source RDBMS project.
 
19
 *
 
20
 * All Rights Reserved.
 
21
 * Contributor(s): ______________________________________.
 
22
 */
 
23
 
 
24
#ifndef UTILITIES_GSEC_CALL_SERVICE_H
 
25
#define UTILITIES_GSEC_CALL_SERVICE_H
 
26
 
 
27
#include "../jrd/ibase.h"
 
28
#include "../utilities/gsec/gsec.h"
 
29
#include "../utilities/gsec/secur_proto.h"
 
30
 
 
31
isc_svc_handle attachRemoteServiceManager(ISC_STATUS*, const TEXT*, const TEXT*, 
 
32
                                                          bool, int, const TEXT*);
 
33
isc_svc_handle attachRemoteServiceManager(ISC_STATUS*, const TEXT*, const TEXT*, 
 
34
                                                          bool, const TEXT*);
 
35
void callRemoteServiceManager(ISC_STATUS*, isc_svc_handle, 
 
36
                                                          const internal_user_data&, 
 
37
                                                          FPTR_SECURITY_CALLBACK, void*);
 
38
void detachRemoteServiceManager(ISC_STATUS*, isc_svc_handle);
 
39
 
 
40
#endif // UTILITIES_GSEC_CALL_SERVICE_H