aboutsummaryrefslogtreecommitdiff
path: root/extmod/modlwip.c
AgeCommit message (Expand)Author
2022-06-02all: Remove third argument to MP_REGISTER_MODULE.Damien George
2022-05-24extmod: Revert accidental usocket->socket rename.Jim Mussared
2022-05-18extmod: Make port-included extmod modules use MP_REGISTER_MODULES.Jim Mussared
2022-05-18extmod: Make extmod modules use MP_REGISTER_MODULE.Jim Mussared
2022-04-11extmod/modusocket: Provide config macro for socket.listen backlog deflt.Damien George
2022-04-11extmod/modusocket: Implement optional socket.listen backlog argument.Jon Bjarni Bjarnason
2021-08-13extmod/modlwip: Fix close and clean up of UDP and raw sockets.Damien George
2021-07-12all: Update to point to files in new shared/ directory.Damien George
2020-08-30extmod/modlwip: Fix error return for TCP recv when not connected.Damien George
2020-04-18all: Fix implicit floating point to integer conversions.stijn
2020-04-05all: Use MP_ERROR_TEXT for all error messages.Jim Mussared
2020-03-28all: Remove spaces inside and around parenthesis.Damien George
2020-03-18extmod/modlwip: Properly handle non-blocking and timeout on UDP recv.Damien George
2020-03-18extmod/modlwip: Fix polling of UDP socket so it doesn't return HUP.Damien George
2020-02-28all: Reformat C and Python source code with tools/codeformat.py.Damien George
2019-10-31extmod/modlwip: Unconditionally return POLLHUP/POLLERR when polling.Damien George
2019-10-31extmod/modlwip: Make socket poll return POLLNVAL in case of bad file.Damien George
2019-10-31extmod/modlwip: Unconditionally return POLLHUP when polling new socket.Damien George
2019-08-06extmod/modlwip: Implement raw sockets for lwIP.Damien George
2019-07-03extmod/modlwip: Use mp_sched_schedule to schedule socket callbacks.Damien George
2019-07-03extmod/modlwip: For TCP send keep trying tcp_write if it returns ERR_MEMDamien George
2019-05-29extmod/modlwip: Register TCP close-timeout callback before closing PCB.Damien George
2019-05-29extmod/modlwip: Free any incoming bufs/connections before closing PCB.Damien George
2019-04-11extmod/modlwip: Abort TCP conns that didn't close cleanly in a while.Damien George
2019-04-03extmod/modlwip: Use correct listening socket object in accept callback.Damien George
2019-04-01extmod/modlwip: Free any stored incoming bufs/connections on TCP error.Damien George
2019-04-01extmod/modlwip: Protect socket.accept with lwIP concurrency lock.Damien George
2019-04-01extmod/modlwip: Handle case of accept callback called with null PCB.Damien George
2019-04-01extmod/modlwip: Handle case of connection closing while on accept queue.Damien George
2019-03-12extmod/modlwip: Fix case where concurrency lock isn't released on error.Damien George
2019-02-27extmod/modlwip: Don't require a port to define concurrency macros.Damien George
2019-02-26extmod/modlwip: Add concurrency protection macros.Damien George
2019-02-18extmod/modlwip: Fix bug when polling listening socket with backlog=1.Damien George
2019-02-15extmod/modlwip: Change #ifdef to #if for check of MICROPY_PY_LWIP.Damien George
2019-01-31py/warning: Support categories for warnings.Paul Sokolovsky
2019-01-31extmod/modlwip: Add support for polling UDP sockets for writability.Damien George
2018-12-03extmod/modlwip: Fix read-polling of listening socket with a backlog.Damien George
2018-12-01extmod/modlwip: Implement TCP listen/accept backlog.Damien George
2018-07-20extmod/modlwip: Deregister all lwIP callbacks when closing a socket.Damien George
2018-07-08extmod: Fix to support compiling with object representation D.Damien George
2018-05-21extmod/modlwip: Allow to compile with MICROPY_PY_LWIP disabled.Damien George
2018-05-17extmod/modlwip: Set POLLHUP flag for sockets that are new.Damien George
2018-05-17extmod/modlwip: Update to work with lwIP v2.0.Damien George
2018-05-04extmod/modlwip: In ioctl handle case when socket is in an error state.Damien George
2018-04-23extmod/modlwip: Check if getaddrinfo() constraints are supported or not.Damien George
2018-04-10py/stream: Switch stream close operation from method to ioctl.Damien George
2017-11-24extmod/modlwip: Commit TCP out data to lower layers if buffer gets full.Damien George
2017-10-24all: Use NULL instead of "" when calling mp_raise exception helpers.Damien George
2017-10-04all: Remove inclusion of internal py header files.Damien George
2017-08-30all: Convert remaining "mp_uint_t n_args" to "size_t n_args".Damien George