mirror of
https://github.com/AetherDroid/android_kernel_samsung_on5xelte.git
synced 2025-09-08 17:18:05 -04:00
Fixed MTP to work with TWRP
This commit is contained in:
commit
f6dfaef42e
50820 changed files with 20846062 additions and 0 deletions
26
fs/ncpfs/ncpsign_kernel.h
Normal file
26
fs/ncpfs/ncpsign_kernel.h
Normal file
|
@ -0,0 +1,26 @@
|
|||
/*
|
||||
* 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;
|
||||
}
|
||||
|
||||
#endif
|
Loading…
Add table
Add a link
Reference in a new issue