index
:
openmano-mpy
master
MicroPython source and hardware configuration for OpenMano
Damien George
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
extmod
/
modlwip.c
Age
Commit message (
Expand
)
Author
2019-08-06
extmod/modlwip: Implement raw sockets for lwIP.
Damien George
2019-07-03
extmod/modlwip: Use mp_sched_schedule to schedule socket callbacks.
Damien George
2019-07-03
extmod/modlwip: For TCP send keep trying tcp_write if it returns ERR_MEM
Damien George
2019-05-29
extmod/modlwip: Register TCP close-timeout callback before closing PCB.
Damien George
2019-05-29
extmod/modlwip: Free any incoming bufs/connections before closing PCB.
Damien George
2019-04-11
extmod/modlwip: Abort TCP conns that didn't close cleanly in a while.
Damien George
2019-04-03
extmod/modlwip: Use correct listening socket object in accept callback.
Damien George
2019-04-01
extmod/modlwip: Free any stored incoming bufs/connections on TCP error.
Damien George
2019-04-01
extmod/modlwip: Protect socket.accept with lwIP concurrency lock.
Damien George
2019-04-01
extmod/modlwip: Handle case of accept callback called with null PCB.
Damien George
2019-04-01
extmod/modlwip: Handle case of connection closing while on accept queue.
Damien George
2019-03-12
extmod/modlwip: Fix case where concurrency lock isn't released on error.
Damien George
2019-02-27
extmod/modlwip: Don't require a port to define concurrency macros.
Damien George
2019-02-26
extmod/modlwip: Add concurrency protection macros.
Damien George
2019-02-18
extmod/modlwip: Fix bug when polling listening socket with backlog=1.
Damien George
2019-02-15
extmod/modlwip: Change #ifdef to #if for check of MICROPY_PY_LWIP.
Damien George
2019-01-31
py/warning: Support categories for warnings.
Paul Sokolovsky
2019-01-31
extmod/modlwip: Add support for polling UDP sockets for writability.
Damien George
2018-12-03
extmod/modlwip: Fix read-polling of listening socket with a backlog.
Damien George
2018-12-01
extmod/modlwip: Implement TCP listen/accept backlog.
Damien George
2018-07-20
extmod/modlwip: Deregister all lwIP callbacks when closing a socket.
Damien George
2018-07-08
extmod: Fix to support compiling with object representation D.
Damien George
2018-05-21
extmod/modlwip: Allow to compile with MICROPY_PY_LWIP disabled.
Damien George
2018-05-17
extmod/modlwip: Set POLLHUP flag for sockets that are new.
Damien George
2018-05-17
extmod/modlwip: Update to work with lwIP v2.0.
Damien George
2018-05-04
extmod/modlwip: In ioctl handle case when socket is in an error state.
Damien George
2018-04-23
extmod/modlwip: Check if getaddrinfo() constraints are supported or not.
Damien George
2018-04-10
py/stream: Switch stream close operation from method to ioctl.
Damien George
2017-11-24
extmod/modlwip: Commit TCP out data to lower layers if buffer gets full.
Damien George
2017-10-24
all: Use NULL instead of "" when calling mp_raise exception helpers.
Damien George
2017-10-04
all: Remove inclusion of internal py header files.
Damien George
2017-08-30
all: Convert remaining "mp_uint_t n_args" to "size_t n_args".
Damien George
2017-08-13
all: Raise exceptions via mp_raise_XXX
Javier Candeira
2017-07-31
extmod/modlwip: Implement setsockopt(IP_ADD_MEMBERSHIP).
Paul Sokolovsky
2017-07-31
extmod: Use MP_ROM_INT for int values in an mp_rom_map_elem_t.
Damien George
2017-07-29
extmod/mod{lwip,onewire,webrepl}: Convert to mp_rom_map_elem_t.
Paul Sokolovsky
2017-06-04
extmod/modlwip: accept: Fix error code for non-blocking mode.
Paul Sokolovsky
2017-06-04
extmod/modlwip: Fix error codes for duplicate calls to connect().
Paul Sokolovsky
2017-06-03
extmod/modlwip: connect: For non-blocking mode, return EINPROGRESS.
Paul Sokolovsky
2017-05-29
various: Spelling fixes
Ville Skyttä
2017-05-01
extmod/modlwip: ioctl POLL: Fix handling of peer closed socket.
Paul Sokolovsky
2017-04-29
extmod/modlwip: getaddrinfo: Allow to accept all 6 standard params.
Paul Sokolovsky
2017-03-31
all: Use full path name when including mp-readline/timeutils/netutils.
Damien George
2017-03-26
extmod/modlwip: Use mp_obj_str_get_str instead of mp_obj_str_get_data.
Damien George
2017-02-15
extmod/modlwip: Add my copyright.
Paul Sokolovsky
2017-01-27
extmod/modlwip: Add socket.readinto() method.
Damien George
2017-01-04
all: Consistently update signatures of .make_new and .call methods.
Paul Sokolovsky
2016-12-02
extmod/modlwip: Add ioctl method to socket, with poll implementation.
Damien George
2016-10-07
extmod/modlwip: Use mp_raise_OSError helper function.
Damien George
2016-09-22
all: Remove 'name' member from mp_obj_module_t struct.
Damien George
[next]