1
0
mirror of https://git.libssh.org/projects/libssh.git synced 2025-11-30 13:01:23 +03:00
Files
libssh/sftp_server/server.h
Aris Adamantiadis dc0c5c4cfe the whole libconfig + my development tree for ACL/ config
git-svn-id: svn+ssh://svn.berlios.de/svnroot/repos/libssh/trunk@20 7dcaeef0-15fb-0310-b436-a5af3365683c
2005-08-28 16:22:42 +00:00

19 lines
367 B
C

/* server.h */
/* headers for the sftp server project */
int parse_config(char *file);
typedef struct list_struct {
struct list_struct *next;
char *key;
void *data;
} list;
list *list_add(list *ptr, const char *key, void *data);
void *list_find(list *ptr, const char *key);
struct group {
list *users;
char *chroot;
int uid;
int gid;
};