You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
497 B
14 lines
497 B
#ifndef SFRT_UTIL_H
|
|
#define SFRT_UTIL_H
|
|
|
|
#include <sandbox.h>
|
|
#include <module.h>
|
|
|
|
/* perhaps move it to module.h or sandbox.h? */
|
|
struct sandbox *util_parse_sandbox_string_custom(struct module *m, char *str, const struct sockaddr *addr);
|
|
struct sandbox *util_parse_sandbox_string_json(struct module *m, char *str, const struct sockaddr *addr);
|
|
int util_parse_modules_file_json(char *filename);
|
|
int util_parse_modules_file_custom(char *filename);
|
|
|
|
#endif /* SFRT_UTIL_H */
|