summaryrefslogtreecommitdiffstatshomepage
path: root/unix/modsocket.c
Commit message (Expand)AuthorAge
* all: Use the name MicroPython consistently in commentsAlexander Steffen2017-07-31
* unix/modsocket: Remove unnecessary asserts.Damien George2017-07-12
* various: Spelling fixesVille Skyttä2017-05-29
* all: Remove readall() method, which is equivalent to read() w/o args.Paul Sokolovsky2016-11-14
* unix: Use common RAISE_ERRNO macro from mphalport.h.Damien George2016-10-07
* unix: Use mp_raise_OSError helper function.Damien George2016-10-07
* all: Remove 'name' member from mp_obj_module_t struct.Damien George2016-09-22
* unix/moduselect: Allow poll.register(), etc. accept fd-like objects.Paul Sokolovsky2016-08-07
* all: Rename mp_obj_type_t::stream_p to protocol.Paul Sokolovsky2016-06-18
* unix/modsocket: Use mp_const_empty_map instead of creating empty map.Paul Sokolovsky2016-04-04
* unix/modsocket: Add comment regarding close() error checking (which is none).Paul Sokolovsky2016-03-02
* unix/modsocket: sockaddr(): Handle AF_INET6 addresses.Paul Sokolovsky2016-01-27
* unix/modsocket: accept(): Make IPv6-clean.Paul Sokolovsky2016-01-21
* unix: Add socket.inet_ntop functionDave Hylands2016-01-11
* py: Change first arg of type.make_new from mp_obj_t to mp_obj_type_t*.Damien George2016-01-11
* py: Change type signature of builtin funs that take variable or kw args.Damien George2016-01-11
* py: Change type of .make_new and .call args: mp_uint_t becomes size_t.Damien George2016-01-11
* py: Wrap all obj-ptr conversions in MP_OBJ_TO_PTR/MP_OBJ_FROM_PTR.Damien George2015-11-29
* py: Add MP_ROM_* macros and mp_rom_* types and use them.Damien George2015-11-29
* unix/modsocket: Use snprintf(), as defined by lib/utils/printf.c.Paul Sokolovsky2015-11-21
* unix/modsocket: Implement sockaddr() function to decode raw socket address.Paul Sokolovsky2015-11-21
* unix/modsocket: Removed dangling references to sockaddr_in_type.Paul Sokolovsky2015-11-20
* unix/modsocket: Fix usage of pointers to locals outside scopeAnmol Sarma2015-10-10
* unix: modsocket: Implement inet_pton() in preference of inet_aton().Paul Sokolovsky2015-07-15
* unix: modsocket: Implement recvfrom().Paul Sokolovsky2015-07-14
* unix: modsocket: Implement sendto().Paul Sokolovsky2015-07-12
* unix: socket.getaddrinfo: Port is unsigned value.Paul Sokolovsky2015-07-11
* unix: socket.getaddrinfo: Accept family & socktype arguments.Paul Sokolovsky2015-07-10
* py: Overhaul and simplify printf/pfenv mechanism.Damien George2015-04-16
* py, unix: Allow to compile with -Wunused-parameter.Damien George2015-01-20
* unix: Prefix includes with py/; remove need for -I../py.Damien George2015-01-01
* py: Move to guarded includes, everywhere in py/ core.Damien George2015-01-01
* py: Rename mp_obj_int_get to mp_obj_int_get_truncated; fix struct.pack.Damien George2014-12-05
* Use MP_DEFINE_CONST_DICT macro to define module dicts.Damien George2014-11-29
* Implement kwargs for builtin open() and _io.FileIOstijn2014-10-21
* unix, stmhal: Implement file.readinto() method.Paul Sokolovsky2014-10-18
* unix: Rename "microsocket" module to "usocket".Paul Sokolovsky2014-10-09
* unix: Don't use -Wno-error=cpp or #warning; fix strict alias warning.Damien George2014-09-06
* Change some parts of the core API to use mp_uint_t instead of uint/int.Damien George2014-08-30
* modsocket: .recv() returns bytes object.Paul Sokolovsky2014-08-10
* py: Make MP_OBJ_NEW_SMALL_INT cast arg to mp_int_t itself.Damien George2014-07-31
* py: Change stream protocol API: fns return uint; is_text for text.Damien George2014-07-27
* Rename machine_(u)int_t to mp_(u)int_t.Damien George2014-07-03
* modsocket: Fix uClibc detection.Paul Sokolovsky2014-06-24
* modsocket: Workaround uClibc issue with numeric port for getaddrinfo().Paul Sokolovsky2014-06-22
* modsocket: Add call to freeaddrinfo().Paul Sokolovsky2014-06-22
* Prefix ARRAY_SIZE with micropython prefix MP_Emmanuel Blot2014-06-19
* - FreeBSD provides alloca() via stdlib.h, in contrast to Linux and WindowsMarcus von Appen2014-06-07
* modsocket: Add some comments on intended usage/API design of module.Paul Sokolovsky2014-05-31
* modsocket: Remove stale ifdef.Paul Sokolovsky2014-05-31