cregit-Linux how code gets into the kernel

Release 4.10 fs/ncpfs/ncpsign_kernel.h

Directory: fs/ncpfs
/*
 *  ncpsign_kernel.h
 *
 *  Arne de Bruijn (arne@knoware.nl), 1997
 *
 */
 
#ifndef _NCPSIGN_KERNEL_H

#define _NCPSIGN_KERNEL_H

#ifdef CONFIG_NCPFS_PACKET_SIGNING
void __sign_packet(struct ncp_server *server, const char *data, size_t size, __u32 totalsize, void *sign_buff);
int sign_verify_reply(struct ncp_server *server, const char *data, size_t size, __u32 totalsize, const void *sign_buff);
#endif


static inline size_t sign_packet(struct ncp_server *server, const char *data, size_t size, __u32 totalsize, void *sign_buff) { #ifdef CONFIG_NCPFS_PACKET_SIGNING if (server->sign_active) { __sign_packet(server, data, size, totalsize, sign_buff); return 8; } #endif return 0; }

Contributors

PersonTokensPropCommitsCommitProp
petr vandrovec*petr vandrovec*59100.00%1100.00%
Total59100.00%1100.00%

#endif

Overall Contributors

PersonTokensPropCommitsCommitProp
petr vandrovec*petr vandrovec*10283.61%266.67%
pre-gitpre-git2016.39%133.33%
Total122100.00%3100.00%
Directory: fs/ncpfs
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.