GUI: Fix Tomato RAF theme for all builds. Compilation typo.
[tomato.git] / release / src-rt-6.x.4708 / linux / linux-2.6.36 / fs / ncpfs / ncpsign_kernel.h
blob6451a68381ccffcefbbfccd928a943a19872e8a6
1 /*
2 * ncpsign_kernel.h
4 * Arne de Bruijn (arne@knoware.nl), 1997
6 */
8 #ifndef _NCPSIGN_KERNEL_H
9 #define _NCPSIGN_KERNEL_H
11 #include <linux/ncp_fs.h>
13 #ifdef CONFIG_NCPFS_PACKET_SIGNING
14 void __sign_packet(struct ncp_server *server, const char *data, size_t size, __u32 totalsize, void *sign_buff);
15 int sign_verify_reply(struct ncp_server *server, const char *data, size_t size, __u32 totalsize, const void *sign_buff);
16 #endif
18 static inline size_t sign_packet(struct ncp_server *server, const char *data, size_t size, __u32 totalsize, void *sign_buff) {
19 #ifdef CONFIG_NCPFS_PACKET_SIGNING
20 if (server->sign_active) {
21 __sign_packet(server, data, size, totalsize, sign_buff);
22 return 8;
24 #endif
25 return 0;
28 #endif