• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/samba-3.0.13/source/python/

Lines Matching refs:response

35 			    struct winbindd_response *response);
47 struct winbindd_response response;
56 ZERO_STRUCT(response);
69 if (winbindd_request(WINBINDD_LOOKUPNAME, &request, &response)
75 result = PyString_FromString(response.data.sid.sid);
85 struct winbindd_response response;
93 ZERO_STRUCT(response);
97 if (winbindd_request(WINBINDD_LOOKUPSID, &request, &response)
103 asprintf(&name, "%s%s%s", response.data.name.dom_name,
104 lp_winbind_separator(), response.data.name.name);
121 struct winbindd_response response;
127 ZERO_STRUCT(response);
129 if (winbindd_request(WINBINDD_LIST_USERS, NULL, &response)
137 if (response.extra_data) {
138 const char *extra_data = response.extra_data;
152 struct winbindd_response response;
158 ZERO_STRUCT(response);
160 if (winbindd_request(WINBINDD_LIST_GROUPS, NULL, &response)
168 if (response.extra_data) {
169 const char *extra_data = response.extra_data;
187 struct winbindd_response response;
193 ZERO_STRUCT(response);
195 if (winbindd_request(WINBINDD_LIST_TRUSTDOM, NULL, &response)
203 if (response.extra_data) {
204 const char *extra_data = response.extra_data;
218 struct winbindd_response response;
223 ZERO_STRUCT(response);
225 if (winbindd_request(WINBINDD_CHECK_MACHACC, NULL, &response)
231 return PyInt_FromLong(response.data.num_entries);
286 struct winbindd_response response;
293 ZERO_STRUCT(response);
297 if (winbindd_request(WINBINDD_UID_TO_SID, &request, &response)
303 return PyString_FromString(response.data.sid.sid);
311 struct winbindd_response response;
318 ZERO_STRUCT(response);
322 if (winbindd_request(WINBINDD_GID_TO_SID, &request, &response)
328 return PyString_FromString(response.data.sid.sid);
336 struct winbindd_response response;
343 ZERO_STRUCT(response);
347 if (winbindd_request(WINBINDD_SID_TO_UID, &request, &response)
353 return PyInt_FromLong(response.data.uid);
361 struct winbindd_response response;
368 ZERO_STRUCT(response);
372 if (winbindd_request(WINBINDD_SID_TO_GID, &request, &response)
378 return PyInt_FromLong(response.data.gid);
390 struct winbindd_response response;
397 ZERO_STRUCT(response);
402 if (winbindd_request(WINBINDD_PAM_AUTH, &request, &response)
408 return PyInt_FromLong(response.data.auth.nt_status);
411 /* Challenge/response authentication */
418 struct winbindd_response response;
428 ZERO_STRUCT(response);
449 if (winbindd_request(WINBINDD_PAM_AUTH_CRAP, &request, &response)
455 return PyInt_FromLong(response.data.auth.nt_status);
460 /* Challenge/response authentication, with secret */
467 struct winbindd_response response;
477 ZERO_STRUCT(response);
509 if (winbindd_request(WINBINDD_SMBD_AUTH_CRAP, &request, &response)
515 return PyInt_FromLong(response.data.auth.nt_status);
525 struct winbindd_response response;
533 ZERO_STRUCT(response);
537 if (winbindd_request(WINBINDD_GETPWNAM, &request, &response)
543 if (!py_from_winbind_passwd(&result, &response)) {
556 struct winbindd_response response;
564 ZERO_STRUCT(response);
568 if (winbindd_request(WINBINDD_GETPWUID, &request, &response)
574 if (!py_from_winbind_passwd(&result, &response)) {
712 "Authenticate a username and password using the challenge/response\n"
721 "Authenticate a username and password using the challenge/response\n"