Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
M
micropython
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
card10
micropython
Commits
6837dba6
Commit
6837dba6
authored
8 years ago
by
Paul Sokolovsky
Browse files
Options
Downloads
Patches
Plain Diff
extmod/modwebsocket: Allow to get type of last read data using ioctl().
parent
0c97e4c4
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
extmod/modwebsocket.c
+13
-0
13 additions, 0 deletions
extmod/modwebsocket.c
with
13 additions
and
0 deletions
extmod/modwebsocket.c
+
13
−
0
View file @
6837dba6
...
...
@@ -207,15 +207,28 @@ STATIC mp_uint_t websocket_write(mp_obj_t self_in, const void *buf, mp_uint_t si
return
out_sz
;
}
STATIC
mp_uint_t
websocket_ioctl
(
mp_obj_t
self_in
,
mp_uint_t
request
,
uintptr_t
arg
,
int
*
errcode
)
{
mp_obj_websocket_t
*
self
=
MP_OBJ_TO_PTR
(
self_in
);
switch
(
request
)
{
case
MP_STREAM_GET_DATA_OPTS
:
return
self
->
ws_flags
&
FRAME_OPCODE_MASK
;
default:
*
errcode
=
EINVAL
;
return
MP_STREAM_ERROR
;
}
}
STATIC
const
mp_map_elem_t
websocket_locals_dict_table
[]
=
{
{
MP_OBJ_NEW_QSTR
(
MP_QSTR_read
),
(
mp_obj_t
)
&
mp_stream_read_obj
},
{
MP_OBJ_NEW_QSTR
(
MP_QSTR_write
),
(
mp_obj_t
)
&
mp_stream_write_obj
},
{
MP_OBJ_NEW_QSTR
(
MP_QSTR_ioctl
),
(
mp_obj_t
)
&
mp_stream_ioctl_obj
},
};
STATIC
MP_DEFINE_CONST_DICT
(
websocket_locals_dict
,
websocket_locals_dict_table
);
STATIC
const
mp_stream_p_t
websocket_stream_p
=
{
.
read
=
websocket_read
,
.
write
=
websocket_write
,
.
ioctl
=
websocket_ioctl
,
};
STATIC
const
mp_obj_type_t
websocket_type
=
{
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment