forked from torvalds/linux
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
cifsd: append ksmbd prefix into names for asn1 decoder
Because functions and variables generated from ASN1 compiler aren't static, append ksmbd prefix into thoses to avoid link errors. Signed-off-by: Hyunchul Lee <[email protected]> Signed-off-by: Namjae Jeon <[email protected]> Signed-off-by: Steve French <[email protected]>
- Loading branch information
1 parent
3aefd54
commit 99f4525
Showing
5 changed files
with
52 additions
and
61 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
GSSAPI ::= | ||
[APPLICATION 0] IMPLICIT SEQUENCE { | ||
thisMech | ||
OBJECT IDENTIFIER ({ksmbd_gssapi_this_mech}), | ||
negotiationToken | ||
NegotiationToken | ||
} | ||
|
||
MechType ::= OBJECT IDENTIFIER ({ksmbd_neg_token_init_mech_type}) | ||
|
||
MechTypeList ::= SEQUENCE OF MechType | ||
|
||
NegTokenInit ::= | ||
SEQUENCE { | ||
mechTypes | ||
[0] MechTypeList, | ||
reqFlags | ||
[1] BIT STRING OPTIONAL, | ||
mechToken | ||
[2] OCTET STRING OPTIONAL ({ksmbd_neg_token_init_mech_token}), | ||
mechListMIC | ||
[3] OCTET STRING OPTIONAL | ||
} | ||
|
||
NegotiationToken ::= | ||
CHOICE { | ||
negTokenInit | ||
[0] NegTokenInit, | ||
negTokenTarg | ||
[1] ANY | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.