mirror of
https://github.com/haiwen/seafile-server.git
synced 2025-04-29 11:54:45 +00:00
* Regularly cleanup files in the httptemp directory * Add scan http temp dir default configuration * Fix mem leak for scan httptemp dir * Modify int to gint64
19 lines
458 B
C
19 lines
458 B
C
#ifndef SEAFILE_FILESERVER_CONFIG_H
|
|
#define SEAFILE_FILESERVER_CONFIG_H
|
|
|
|
struct GKeyFile;
|
|
|
|
int
|
|
fileserver_config_get_integer(GKeyFile *config, char *key, GError **error);
|
|
|
|
char *
|
|
fileserver_config_get_string(GKeyFile *config, char *key, GError **error);
|
|
|
|
int
|
|
fileserver_config_get_int64(GKeyFile *config, char *key, GError **error);
|
|
|
|
gboolean
|
|
fileserver_config_get_boolean(GKeyFile *config, char *key, GError **error);
|
|
|
|
#endif // SEAFILE_FILESERVER_CONFIG_H
|