error: unknown type name 'uint' #215
KarurNaveen
started this conversation in
General
Replies: 3 comments 2 replies
-
Hello, This should more have been an issue rather than a discussion I guess... Can you tell me what system you are using to compile ulfius? |
Beta Was this translation helpful? Give feedback.
1 reply
-
Hello @KarurNaveen , If you replace the |
Beta Was this translation helpful? Give feedback.
1 reply
-
I've made the changes in this commit 618d672 , should be good now, let me know @KarurNaveen if it's all good |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi ,
when we integrated ulfius into our project and compile , we are facing the "unknown type uint" error.
/usr/local/include/ulfius.h:1484:3: error: unknown type name 'uint'
1484 | uint server_no_context_takeover;
| ^~~~
/usr/local/include/ulfius.h:1485:3: error: unknown type name 'uint'
1485 | uint client_no_context_takeover;
| ^~~~
/usr/local/include/ulfius.h:1486:3: error: unknown type name 'uint'
1486 | uint server_max_window_bits;
| ^~~~
/usr/local/include/ulfius.h:1487:3: error: unknown type name 'uint'
1487 | uint client_max_window_bits;
| ^~~~
struct _websocket_deflate_context {
z_stream infstream;
z_stream defstream;
int deflate_mask;
int inflate_mask;
uint server_no_context_takeover;
uint client_no_context_takeover;
uint server_max_window_bits;
uint client_max_window_bits;
};
Please do the needful , after changing to unsigned int errors are not seen.
Thanks
Naveen
Beta Was this translation helpful? Give feedback.
All reactions