Changeset 988 for vendor/current/nsswitch/winbind_client.h
- Timestamp:
- Nov 24, 2016, 1:14:11 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
vendor/current/nsswitch/winbind_client.h
r740 r988 7 7 Copyright (C) Andrew Tridgell 2000 8 8 Copyright (C) Andrew Bartlett 2002 9 Copyright (C) Matthew Newton 2015 9 10 10 11 … … 29 30 #include "winbind_struct_protocol.h" 30 31 32 struct winbindd_context; 33 34 struct winbindd_context *winbindd_ctx_create(void); 35 void winbindd_ctx_free(struct winbindd_context *ctx); 36 31 37 void winbindd_free_response(struct winbindd_response *response); 32 NSS_STATUS winbindd_send_request(int req_type, int need_priv, 38 NSS_STATUS winbindd_send_request(struct winbindd_context *ctx, 39 int req_type, int need_priv, 33 40 struct winbindd_request *request); 34 NSS_STATUS winbindd_get_response(struct winbindd_response *response); 35 NSS_STATUS winbindd_request_response(int req_type, 36 struct winbindd_request *request, 37 struct winbindd_response *response); 38 NSS_STATUS winbindd_priv_request_response(int req_type, 41 NSS_STATUS winbindd_get_response(struct winbindd_context *ctx, 42 struct winbindd_response *response); 43 NSS_STATUS winbindd_request_response(struct winbindd_context *ctx, 44 int req_type, 45 struct winbindd_request *request, 46 struct winbindd_response *response); 47 NSS_STATUS winbindd_priv_request_response(struct winbindd_context *ctx, 48 int req_type, 39 49 struct winbindd_request *request, 40 50 struct winbindd_response *response); 51 41 52 #define winbind_env_set() \ 42 53 (strcmp(getenv(WINBINDD_DONT_ENV)?getenv(WINBINDD_DONT_ENV):"0","1") == 0)
Note:
See TracChangeset
for help on using the changeset viewer.