File: winbind_client.h

package info (click to toggle)
samba 2%3A3.5.6~dfsg-3squeeze11
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 146,064 kB
  • ctags: 139,975
  • sloc: ansic: 1,269,550; xml: 115,137; perl: 26,869; python: 13,704; sh: 13,575; makefile: 4,936; asm: 3,281; cpp: 2,225; yacc: 1,930; exp: 1,784; ada: 1,681; pascal: 1,089; cs: 879; lex: 561; awk: 540; csh: 58; sed: 45; php: 6
file content (30 lines) | stat: -rw-r--r-- 1,182 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#include "winbind_nss_config.h"
#include "winbind_struct_protocol.h"

void winbindd_init_request(struct winbindd_request *req,int rq_type);
void winbindd_free_response(struct winbindd_response *response);
NSS_STATUS winbindd_send_request(int req_type, int need_priv,
				 struct winbindd_request *request);
NSS_STATUS winbindd_get_response(struct winbindd_response *response);
NSS_STATUS winbindd_request_response(int req_type,
			    struct winbindd_request *request,
			    struct winbindd_response *response);
NSS_STATUS winbindd_priv_request_response(int req_type,
					  struct winbindd_request *request,
					  struct winbindd_response *response);
int winbindd_read_reply(struct winbindd_response *response);

#define winbind_env_set() \
	(strcmp(getenv(WINBINDD_DONT_ENV)?getenv(WINBINDD_DONT_ENV):"0","1") == 0)

#define winbind_off() \
	(setenv(WINBINDD_DONT_ENV, "1", 1) == 0)

#define winbind_on() \
	(setenv(WINBINDD_DONT_ENV, "0", 1) == 0)

int winbind_write_sock(void *buffer, int count, int recursing, int need_priv);
int winbind_read_sock(void *buffer, int count);
void winbind_close_sock(void) __attribute__((destructor));

const char *nss_err_str(NSS_STATUS ret);