Initial version of the patches
[transmission-rpc-pam.git] / libtransmission-native-auth.h.patch
1 Index: libtransmission/native-auth.h
2 ===================================================================
3 --- libtransmission/native-auth.h       (revision 0)
4 +++ libtransmission/native-auth.h       (revision 0)
5 @@ -0,0 +1,43 @@
6 +/******************************************************************************
7 + * $Id:$
8 + *
9 + * Copyright (c) Transmission authors and contributors
10 + *
11 + * Permission is hereby granted, free of charge, to any person obtaining a
12 + * copy of this software and associated documentation files (the "Software"),
13 + * to deal in the Software without restriction, including without limitation
14 + * the rights to use, copy, modify, merge, publish, distribute, sublicense,
15 + * and/or sell copies of the Software, and to permit persons to whom the
16 + * Software is furnished to do so, subject to the following conditions:
17 + *
18 + * The above copyright notice and this permission notice shall be included in
19 + * all copies or substantial portions of the Software.
20 + *
21 + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
22 + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
23 + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
24 + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
25 + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
26 + * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
27 + * DEALINGS IN THE SOFTWARE.
28 + *****************************************************************************/
29 +
30 +#ifndef __TRANSMISSION__
31 + #error only libtransmission should #include this header.
32 +#endif
33 +
34 +#ifndef TR_NATIVE_AUTH_H
35 +#define TR_NATIVE_AUTH_H 1
36 +
37 +enum _tr_rpcNativeAuthenticationResult
38 +{
39 +    NATIVE_AUTHENTICATON_FAIL = 0,
40 +    NATIVE_AUTHENTICATON_SUCCESS
41 +};
42 +
43 +typedef enum _tr_rpcNativeAuthenticationResult tr_rpcNativeAuthenticationResult;
44 +
45 +void tr_performNativeAuthentication( const char * user, const char * password, tr_rpcNativeAuthenticationResult * result );
46 +
47 +#endif
48 +