]> arthur.barton.de Git - netatalk.git/blob - etc/afpd/fce_api.h
Fix line ending
[netatalk.git] / etc / afpd / fce_api.h
1 /* 
2  * File:   fce_api.h
3  * Author: mw
4  *
5  * Created on 1. Oktober 2010, 21:35
6  *
7  * API calls for file change event api
8  */
9
10 #ifndef _FCE_API_H
11 #define _FCE_API_H
12
13 struct path;
14 struct ofork;
15 int fce_register_delete_file( struct path *path );
16 int fce_register_delete_dir( char *name );
17 int fce_register_new_dir( struct path *path );
18 int fce_register_new_file( struct path *path );
19 int fce_register_file_modification( struct ofork *ofork );
20
21 int fce_add_udp_socket( char *target );  // IP or IP:Port
22 int fce_set_coalesce( char *coalesce_opt ); // all|delete|create
23
24 #define FCE_DEFAULT_PORT 12250
25
26 #endif  /* _FCE_API_H */
27