Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
A
asn1c
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Libraries
asn1c
Commits
ca9847dd
Commit
ca9847dd
authored
Nov 06, 2017
by
Vasil Velichkov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add APER support in the asn_decode(...) function
parent
9a831e40
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
0 deletions
+9
-0
skeletons/asn_application.c
skeletons/asn_application.c
+9
-0
No files found.
skeletons/asn_application.c
View file @
ca9847dd
...
@@ -464,6 +464,15 @@ asn_decode(const asn_codec_ctx_t *opt_codec_ctx,
...
@@ -464,6 +464,15 @@ asn_decode(const asn_codec_ctx_t *opt_codec_ctx,
return
uper_decode_complete
(
opt_codec_ctx
,
td
,
sptr
,
buffer
,
size
);
return
uper_decode_complete
(
opt_codec_ctx
,
td
,
sptr
,
buffer
,
size
);
#endif
#endif
case
ATS_ALIGNED_BASIC_PER
:
case
ATS_ALIGNED_CANONICAL_PER
:
#ifdef ASN_DISABLE_PER_SUPPORT
errno
=
ENOENT
;
ASN__DECODE_FAILED
;
#else
return
aper_decode_complete
(
opt_codec_ctx
,
td
,
sptr
,
buffer
,
size
);
#endif
case
ATS_BASIC_XER
:
case
ATS_BASIC_XER
:
case
ATS_CANONICAL_XER
:
case
ATS_CANONICAL_XER
:
return
xer_decode
(
opt_codec_ctx
,
td
,
sptr
,
buffer
,
size
);
return
xer_decode
(
opt_codec_ctx
,
td
,
sptr
,
buffer
,
size
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment