File: request.h

package info (click to toggle)
gidentd 0.4.5-5
  • links: PTS
  • area: main
  • in suites: woody
  • size: 268 kB
  • ctags: 57
  • sloc: ansic: 616; sh: 400; makefile: 42
file content (14 lines) | stat: -rw-r--r-- 155 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
typedef struct {
	int lp;
	int rp;
	
	int uid;
	char *name;
	char *home;
	
} Request_Struct;

extern Request_Struct req;

int Handle_Request(char *line);