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
/
cc3200
/
mods
/
modusocket.c
Age
Commit message (
Expand
)
Author
2017-09-06
ports: Make new ports/ sub-directory and move all ports there.
Damien George
2017-08-30
all: Convert remaining "mp_uint_t n_args" to "size_t n_args".
Damien George
2017-08-21
all: Make static dicts use mp_rom_map_elem_t type and MP_ROM_xxx macros.
Damien George
2017-07-31
all: Use the name MicroPython consistently in comments
Alexander Steffen
2017-07-11
cc3200/modusocket: Fix connect() when in non-blocking or timeout mode.
Damien George
2017-06-20
cc3200: Initialise variable to zero to prevent compiler warnings.
Damien George
2017-06-20
cc3200: Make non-zero socket timeout work with connect/accept/send.
Damien George
2017-06-14
cc3200/modusocket: Simplify socket.makefile() function.
Damien George
2017-03-31
all: Use full path name when including mp-readline/timeutils/netutils.
Damien George
2017-03-29
cc3200: Update for changes to mp_obj_str_get_data.
Damien George
2017-02-22
cc3200: Remove socket.timeout class, use OSError(ETIMEDOUT) instead.
Damien George
2017-02-22
cc3200/mods/modusocket: Init vars to 0 to silence compiler warnings.
Damien George
2017-02-22
cc3200: Convert to using uPy internal errno numbers.
Damien George
2017-02-22
cc3200: Move wlan socket glue functions from modwlan to modusocket.
Damien George
2017-02-21
cc3200: Use simplelink API instead of emulated BSD API.
Damien George
2017-01-29
cc3200/modusocket: Remove deprecated socket.error.
Paul Sokolovsky
2017-01-04
all: Consistently update signatures of .make_new and .call methods.
Paul Sokolovsky
2016-11-14
all: Remove readall() method, which is equivalent to read() w/o args.
Paul Sokolovsky
2016-10-18
cc3200: Use mp_raise_XXX helper functions to reduce code size.
Damien George
2016-09-22
all: Remove 'name' member from mp_obj_module_t struct.
Damien George
2016-06-18
all: Rename mp_obj_type_t::stream_p to protocol.
Paul Sokolovsky
2016-02-21
cc3200: Improve robustness of WLAN during sleep modes.
danicampora
2016-01-11
py: Change first arg of type.make_new from mp_obj_t to mp_obj_type_t*.
Damien George
2015-10-31
all: Add py/mphal.h and use it in all ports.
Damien George
2015-10-22
cc3200: Add created sockets to the registry.
danicampora
2015-10-21
docs: Add usocket and ussl modules' documentation.
danicampora
2015-10-21
cc3200: Make socket.listen([backlog]) compliant with Python 3.5.
danicampora
2015-10-21
cc3200: Clean-up socket constants.
danicampora
2015-07-30
cc3200: On ssl.read() or ssl.readall() ignore ssl layer closed error.
Daniel Campora
2015-07-30
cc3200: Add socket.makefile()
Daniel Campora
2015-07-17
cc3200: Add socket.sendall() (aliases to send()).
Daniel Campora
2015-07-16
cc3200: Make socket stream methods return POSIX error codes.
Daniel Campora
2015-07-10
cc3200: Refactor and clean-up socket closing code.
Daniel Campora
2015-07-07
cc3200: Translate simplelink's socket error numbers to POSIX values.
Daniel Campora
2015-07-02
cc3200: Fix socket recv and recvfrom return value type.
Daniel Campora
2015-07-02
cc3200: Add modussl, ssl sockets subclassed from normal sockets.
Daniel Campora
2015-07-02
cc3200: Add socket.timeout and socket.error exceptions.
Daniel Campora
2015-06-29
cc3200: Correct socket settimeout time format.
Daniel Campora
2015-05-24
cc3200: Remove NIC abstraction layer.
Daniel Campora
2015-05-24
cc3200: Reset the servers and close user sockets on WLAN disconection.
Daniel Campora
2015-05-22
cc3200: Finally unlock the full wake on WLAN feature set.
Daniel Campora
2015-05-12
py: Add mp_obj_get_int_truncated and use it where appropriate.
Damien George
2015-05-04
lib: Move some common mod_network_* functions to lib/netutils.
Josef Gajdusek
2015-04-28
cc3200: Select NIC when the socket is created.
Daniel Campora
2015-04-18
cc3200: Clean up and reduce use/include of std.h.
Damien George
2015-04-14
cc3200: Add IPPROTO_SEC to be able to create secure sockets.
Daniel Campora
2015-02-21
cc3200: Add explicit py/ path-prefix for py includes.
Damien George
2015-02-06
cc3200: Add cc3200 port of MicroPython.
danicampora