Line data Source code
1 : /*
2 : Unix SMB/CIFS implementation.
3 :
4 : Winbind client API - SSSD version
5 :
6 : Copyright (C) Sumit Bose <sbose@redhat.com> 2014
7 :
8 : This library is free software; you can redistribute it and/or
9 : modify it under the terms of the GNU Lesser General Public
10 : License as published by the Free Software Foundation; either
11 : version 3 of the License, or (at your option) any later version.
12 :
13 : This library is distributed in the hope that it will be useful,
14 : but WITHOUT ANY WARRANTY; without even the implied warranty of
15 : MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 : Library General Public License for more details.
17 :
18 : You should have received a copy of the GNU Lesser General Public License
19 : along with this program. If not, see <http://www.gnu.org/licenses/>.
20 : */
21 : /* Required Headers */
22 :
23 : #include "libwbclient.h"
24 : #include "wbc_sssd_internal.h"
25 :
26 0 : wbcErr wbcRequestResponse(int cmd,
27 : struct winbindd_request *request,
28 : struct winbindd_response *response)
29 : {
30 : /* Helper to make API check happy */
31 0 : WBC_SSSD_NOT_IMPLEMENTED;
32 : }
33 :
34 0 : wbcErr wbcRequestResponsePriv(int cmd,
35 : struct winbindd_request *request,
36 : struct winbindd_response *response)
37 : {
38 : /* Helper to make API check happy */
39 0 : WBC_SSSD_NOT_IMPLEMENTED;
40 : }
|