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
384f46dd
Commit
384f46dd
authored
Mar 19, 2018
by
Mouse
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Revert "Yet more Travis fixes"
This reverts commit
012a9937
.
parent
012a9937
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
6 deletions
+6
-6
skeletons/BOOLEAN.c
skeletons/BOOLEAN.c
+5
-5
skeletons/constr_CHOICE.c
skeletons/constr_CHOICE.c
+1
-1
No files found.
skeletons/BOOLEAN.c
View file @
384f46dd
...
@@ -62,7 +62,7 @@ BOOLEAN_decode_ber(const asn_codec_ctx_t *opt_codec_ctx,
...
@@ -62,7 +62,7 @@ BOOLEAN_decode_ber(const asn_codec_ctx_t *opt_codec_ctx,
const
asn_TYPE_descriptor_t
*
td
,
void
**
bool_value
,
const
asn_TYPE_descriptor_t
*
td
,
void
**
bool_value
,
const
void
*
buf_ptr
,
size_t
size
,
int
tag_mode
)
{
const
void
*
buf_ptr
,
size_t
size
,
int
tag_mode
)
{
BOOLEAN_t
*
st
=
(
BOOLEAN_t
*
)
*
bool_value
;
BOOLEAN_t
*
st
=
(
BOOLEAN_t
*
)
*
bool_value
;
asn_dec_rval_t
rval
=
{
0
,
0
,
0
};
asn_dec_rval_t
rval
=
{
0
};
ber_tlv_len_t
length
=
0
;
ber_tlv_len_t
length
=
0
;
ber_tlv_len_t
lidx
=
0
;
ber_tlv_len_t
lidx
=
0
;
...
@@ -123,7 +123,7 @@ asn_enc_rval_t
...
@@ -123,7 +123,7 @@ asn_enc_rval_t
BOOLEAN_encode_der
(
const
asn_TYPE_descriptor_t
*
td
,
const
void
*
sptr
,
BOOLEAN_encode_der
(
const
asn_TYPE_descriptor_t
*
td
,
const
void
*
sptr
,
int
tag_mode
,
ber_tlv_tag_t
tag
,
asn_app_consume_bytes_f
*
cb
,
int
tag_mode
,
ber_tlv_tag_t
tag
,
asn_app_consume_bytes_f
*
cb
,
void
*
app_key
)
{
void
*
app_key
)
{
asn_enc_rval_t
erval
=
{
0
,
0
,
0
};
asn_enc_rval_t
erval
=
{
0
};
const
BOOLEAN_t
*
st
=
(
const
BOOLEAN_t
*
)
sptr
;
const
BOOLEAN_t
*
st
=
(
const
BOOLEAN_t
*
)
sptr
;
erval
.
encoded
=
der_write_tags
(
td
,
1
,
tag_mode
,
0
,
tag
,
cb
,
app_key
);
erval
.
encoded
=
der_write_tags
(
td
,
1
,
tag_mode
,
0
,
tag
,
cb
,
app_key
);
...
@@ -268,7 +268,7 @@ BOOLEAN_decode_uper(const asn_codec_ctx_t *opt_codec_ctx,
...
@@ -268,7 +268,7 @@ BOOLEAN_decode_uper(const asn_codec_ctx_t *opt_codec_ctx,
const
asn_TYPE_descriptor_t
*
td
,
const
asn_TYPE_descriptor_t
*
td
,
const
asn_per_constraints_t
*
constraints
,
void
**
sptr
,
const
asn_per_constraints_t
*
constraints
,
void
**
sptr
,
asn_per_data_t
*
pd
)
{
asn_per_data_t
*
pd
)
{
asn_dec_rval_t
rv
=
{
0
,
0
,
0
};
asn_dec_rval_t
rv
=
{
0
};
BOOLEAN_t
*
st
=
(
BOOLEAN_t
*
)
*
sptr
;
BOOLEAN_t
*
st
=
(
BOOLEAN_t
*
)
*
sptr
;
(
void
)
opt_codec_ctx
;
(
void
)
opt_codec_ctx
;
...
@@ -317,7 +317,7 @@ BOOLEAN_encode_uper(const asn_TYPE_descriptor_t *td,
...
@@ -317,7 +317,7 @@ BOOLEAN_encode_uper(const asn_TYPE_descriptor_t *td,
asn_dec_rval_t
asn_dec_rval_t
BOOLEAN_decode_aper
(
const
asn_codec_ctx_t
*
opt_codec_ctx
,
const
asn_TYPE_descriptor_t
*
td
,
BOOLEAN_decode_aper
(
const
asn_codec_ctx_t
*
opt_codec_ctx
,
const
asn_TYPE_descriptor_t
*
td
,
const
asn_per_constraints_t
*
constraints
,
void
**
sptr
,
asn_per_data_t
*
pd
)
{
const
asn_per_constraints_t
*
constraints
,
void
**
sptr
,
asn_per_data_t
*
pd
)
{
asn_dec_rval_t
rv
=
{
0
,
0
,
0
};
asn_dec_rval_t
rv
=
{
0
};
BOOLEAN_t
*
st
=
(
BOOLEAN_t
*
)
*
sptr
;
BOOLEAN_t
*
st
=
(
BOOLEAN_t
*
)
*
sptr
;
(
void
)
opt_codec_ctx
;
(
void
)
opt_codec_ctx
;
...
@@ -356,7 +356,7 @@ BOOLEAN_encode_aper(const asn_TYPE_descriptor_t *td,
...
@@ -356,7 +356,7 @@ BOOLEAN_encode_aper(const asn_TYPE_descriptor_t *td,
const
asn_per_constraints_t
*
constraints
,
const
asn_per_constraints_t
*
constraints
,
const
void
*
sptr
,
asn_per_outp_t
*
po
)
{
const
void
*
sptr
,
asn_per_outp_t
*
po
)
{
const
BOOLEAN_t
*
st
=
(
const
BOOLEAN_t
*
)
sptr
;
const
BOOLEAN_t
*
st
=
(
const
BOOLEAN_t
*
)
sptr
;
asn_enc_rval_t
er
=
{
0
,
0
,
0
};
asn_enc_rval_t
er
=
{
0
};
(
void
)
constraints
;
(
void
)
constraints
;
...
...
skeletons/constr_CHOICE.c
View file @
384f46dd
...
@@ -561,7 +561,7 @@ CHOICE_decode_xer(const asn_codec_ctx_t *opt_codec_ctx,
...
@@ -561,7 +561,7 @@ CHOICE_decode_xer(const asn_codec_ctx_t *opt_codec_ctx,
void
*
st
=
*
struct_ptr
;
/* Target structure. */
void
*
st
=
*
struct_ptr
;
/* Target structure. */
asn_struct_ctx_t
*
ctx
;
/* Decoder context */
asn_struct_ctx_t
*
ctx
;
/* Decoder context */
asn_dec_rval_t
rval
=
{
0
,
0
,
0
};
/* Return value of a decoder */
asn_dec_rval_t
rval
=
{
0
};
/* Return value of a decoder */
ssize_t
consumed_myself
=
0
;
/* Consumed bytes from ptr */
ssize_t
consumed_myself
=
0
;
/* Consumed bytes from ptr */
size_t
edx
=
0
;
/* Element index */
size_t
edx
=
0
;
/* Element index */
...
...
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