rework the networking locking facility using the hashlist.
[citadel.git] / citadel / file_ops.h
1 #ifndef FILE_OPS_H
2 #define FILE_OPS_H
3
4 #include "context.h"
5
6 void OpenCmdResult (char *, const char *);
7 void abort_upl (CitContext *who);
8
9 int network_talking_to(const char *nodename, long len, int operation);
10
11 /*
12  * Operations that can be performed by network_talking_to()
13  */
14 enum {
15         NTT_ADD,
16         NTT_REMOVE,
17         NTT_CHECK
18 };
19
20 #endif /* FILE_OPS_H */