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
b8108ec5
Commit
b8108ec5
authored
Sep 29, 2004
by
Lev Walkin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
different type for the big integer
parent
b25fa06e
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
6 additions
and
6 deletions
+6
-6
libasn1fix/asn1fix_bitstring.c
libasn1fix/asn1fix_bitstring.c
+1
-1
libasn1fix/asn1fix_constr.c
libasn1fix/asn1fix_constr.c
+1
-1
libasn1fix/asn1fix_crange.c
libasn1fix/asn1fix_crange.c
+1
-1
libasn1fix/asn1fix_crange.h
libasn1fix/asn1fix_crange.h
+1
-1
libasn1fix/asn1fix_enum.c
libasn1fix/asn1fix_enum.c
+2
-2
No files found.
libasn1fix/asn1fix_bitstring.c
View file @
b8108ec5
...
...
@@ -103,7 +103,7 @@ asn1f_BS_unparsed_convert(arg_t *arg, asn1p_value_t *value, asn1p_expr_t *ttype)
asn1p_module_t
*
mod
;
asn1p_expr_t
*
V
;
asn1p_expr_t
*
bit
;
asn1_integer_t
aI
;
asn1
c
_integer_t
aI
;
uint8_t
*
bitbuf
;
int
bits
;
int
psize
;
...
...
libasn1fix/asn1fix_constr.c
View file @
b8108ec5
...
...
@@ -287,7 +287,7 @@ int
asn1f_fix_constr_autotag
(
arg_t
*
arg
)
{
asn1p_expr_t
*
expr
=
arg
->
expr
;
asn1p_expr_t
*
v
;
asn1_integer_t
tag_value
=
0
;
asn1
c
_integer_t
tag_value
=
0
;
int
r_value
=
0
;
switch
(
expr
->
expr_type
)
{
...
...
libasn1fix/asn1fix_crange.c
View file @
b8108ec5
...
...
@@ -352,7 +352,7 @@ static int _range_fill(asn1p_value_t *val, const asn1cnst_range_t *minmax, asn1c
* However, (FROM("abc".."def")) is forbidden.
* See also 47.4.4.
*/
asn1_integer_t
vmin
,
vmax
;
asn1
c
_integer_t
vmin
,
vmax
;
vmin
=
vmax
=
*
p
;
for
(;
p
<
pend
;
p
++
)
{
asn1cnst_range_t
*
nr
=
_range_new
();
...
...
libasn1fix/asn1fix_crange.h
View file @
b8108ec5
...
...
@@ -8,7 +8,7 @@ typedef struct asn1cnst_edge_s {
ARE_VALUE
,
}
type
;
int
lineno
;
/* Line where the corresponding token was found */
asn1_integer_t
value
;
/* Value when type is ARE_VALUE */
asn1
c
_integer_t
value
;
/* Value when type is ARE_VALUE */
}
asn1cnst_edge_t
;
typedef
struct
asn1cnst_range_s
{
...
...
libasn1fix/asn1fix_enum.c
View file @
b8108ec5
...
...
@@ -7,7 +7,7 @@ int
asn1f_fix_enum
(
arg_t
*
arg
)
{
asn1p_expr_t
*
expr
=
arg
->
expr
;
asn1p_expr_t
*
ev
;
asn1_integer_t
max_value
=
-
1
;
asn1
c
_integer_t
max_value
=
-
1
;
int
rvalue
=
0
;
asn1p_expr_t
*
ext_marker
=
NULL
;
/* "..." position */
int
ret
;
...
...
@@ -21,7 +21,7 @@ asn1f_fix_enum(arg_t *arg) {
* 1. Scan the enumeration values in search for inconsistencies.
*/
TQ_FOR
(
ev
,
&
(
expr
->
members
),
next
)
{
asn1_integer_t
eval
;
asn1
c
_integer_t
eval
;
if
(
ev
->
value
)
DEBUG
(
"
\t
Item %s(%s)"
,
ev
->
Identifier
,
...
...
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