"test/scripts/run_doctest.sh" did not exist on "1a6a1c15bf8ac937ec1ece90b9e217187e30f2d3"
- Jul 22, 2016
-
-
Deomid Ryabkov authored
Remove the random() stubs from the codebase PUBLISHED_FROM=0f56ec7dffa0af1f5061a17d8801239d6f0e32a5
-
- Jul 20, 2016
-
-
Deomid Ryabkov authored
So that socket/connection/whatever is really closed by the time user code is run. Speed up test_http_endpoints by using appropriate wait conditions. PUBLISHED_FROM=5fc8a772cc2a9c3b8c9dbddde9f99b41ce4d334c
-
- Jul 15, 2016
-
-
Deomid Ryabkov authored
That don't have CONSOLE_UART defined PUBLISHED_FROM=7930bb639baf81cff8ce53c6f81e9739668aae08
-
Deomid Ryabkov authored
PUBLISHED_FROM=455184fbe730cf62340046c73ffd8ae4b0e0a2c1
-
- Jul 14, 2016
-
-
Deomid Ryabkov authored
Do not use CA bundle on CC3200, it doesn't work. Make ssl_ca_cert = "*" mean "no verification" and make sure SSL is enabled on the connection when it's required, even w/o verification. PUBLISHED_FROM=c8710a5d24ecfe174ef45b7f81c114d41faf5c12
-
- Jul 13, 2016
-
-
Deomid Ryabkov authored
PUBLISHED_FROM=e9878fc5d55b0b2da854573a7a84e8e14e2f301d
-
- Jul 12, 2016
-
-
Alexander Alashkin authored
PUBLISHED_FROM=e6f1dca95ec7ed3795adf493cca9cdcdc07381f5
-
Deomid Ryabkov authored
PUBLISHED_FROM=7264edfb3b8e4e37f15f2993f479dfe0a9550b1d
-
- Jul 11, 2016
-
-
Deomid Ryabkov authored
Newlib implements rename as _link and _unlink, not _rename. There is no _link on either SLFS or SPIFFS, so override rename directly. PUBLISHED_FROM=ebb54664f8a3c8664ecab1fac021bef286a0e230
-
- Jul 07, 2016
-
-
Deomid Ryabkov authored
Remember sorting settings in url fragment, reverse order on repeated header click. PUBLISHED_FROM=faa033eddc86d0aafc12a86aea4145646ea2c89c
-
Deomid Ryabkov authored
PUBLISHED_FROM=0e6a1c1a2356c1e12580e498c64ba7be367f601c
-
- Jul 06, 2016
-
-
Deomid Ryabkov authored
SimpleLink restart invalidates all sockets. Listeners are restarted, outgoing connections are closed. PUBLISHED_FROM=15567dfb822bffbd44d39ba0e69a7ac64fd7a1c8
-
Deomid Ryabkov authored
cesanta/mongoose#677 PUBLISHED_FROM=4b62bdefac08fa3bedf511dc4d6f7463af3325fc
-
- Jul 01, 2016
-
-
Sergey Lyubka authored
PUBLISHED_FROM=89b978c02be2f10eb930ff13673d45249fd67763
-
- Jun 29, 2016
-
-
Alexander Alashkin authored
PUBLISHED_FROM=dbfcfa91ad85d6447726d0d7e9fe15709f4c4646
-
- Jun 28, 2016
-
-
Deomid Ryabkov authored
PUBLISHED_FROM=bdaeed6628ffb544e31d7fd59475f3a2e78c2967
-
- Jun 27, 2016
-
-
Deomid Ryabkov authored
PUBLISHED_FROM=3b4cbc497c4a0eee2d46f561c0717415ca85c242
-
- Jun 24, 2016
-
-
Deomid Ryabkov authored
Domain name verification feature was added in NWP service pack (reported version: 2.6.0.5). Older versions do not support it. There's not much we can do about it, so we just ignore the error. PUBLISHED_FROM=9495250de1945aae4f2bdf7dddcd7bf1248e24c2
-
- Jun 22, 2016
-
-
Deomid Ryabkov authored
Frees up ~19KB RAM: Before: Code size: 210616 RAM at startup: 48636 total, 34472 free RAM after sys init: 15024 free After: Code size: 195784 RAM at startup: 65096 total, 52980 free RAM after sys init: 34116 free PUBLISHED_FROM=32a9cb8fb6d75cf428bc3548dd5684ce6e52c508
-
Deomid Ryabkov authored
PUBLISHED_FROM=b4062780d22be37acdbecd86e5951245e2908ff8
-
- Jun 15, 2016
-
-
rojer authored
PUBLISHED_FROM=9d4ab680fa672690735b827f56e135330f72beed
-
Sergey Lyubka authored
PUBLISHED_FROM=e6de3b3747a1cd79c3930c2640fadc8356ffed61
-
- Jun 09, 2016
-
-
rojer authored
SimpleLink sockets are suffciently different from BSD that all the ifdefs have become too messy to warrant a separate net_if implementation. As part of this we also implement proper async connect support. Added MG_F_SSL to identify SSL-enabled connections in a generic way, since SSL state can be different depending on the implementation. PUBLISHED_FROM=9cdb8c880b90683e4a26b972cf439d47d6f60917
-
rojer authored
SL requires cert and key to be separate files in DER format. Date verification is disabled for now. PUBLISHED_FROM=7d76150ed356140728a1e5fd82d8a0456347b7dc
-
- Jun 07, 2016
-
-
Marko Mikulicic authored
PUBLISHED_FROM=274a19d6988002fb029e614bffea4083002324a1
-
rojer authored
PUBLISHED_FROM=db7254b5bf25961a700cbce954ef02d41b176500
-
rojer authored
Make restful_server and netcat examples compilation tests: - netcat doesn't use HTTP, compile it with MG_DISABLE_HTTP - restful_server doesn't use websocket, compile it with MG_DISABLE_HTTP_WEBSOCKET h/t @labourcier, cesanta/mongoose#665 PUBLISHED_FROM=4494ac3cbd81e8314beb557ab301b4b44c4afb89
-
- May 28, 2016
-
-
Dmitry Frank authored
`v7_mk_undefined()` and `v7_mk_null()` are left unchanged, but marked deprecated, and `V7_UNDEFINED` and `V7_NULL` are public now. Xtensa code size with instrumentation: 590400 -> 590432, i.e. 32 bytes. Xtensa code size without instrumentation: 530848 -> 531760, i.e. 912 bytes. As objdump reveals, inside v7.c, `v7_mk_number` and others are inlined, so the extra v7 argument is eliminated; outside of v7.c it's obviously not inlined. ---- Also, v7_get_int() is added, which currently just casts stored double value to int PUBLISHED_FROM=e984b7308faf2380b3de388f238e0fae0aea545d
-
- May 18, 2016
-
-
Marko Mikulicic authored
PUBLISHED_FROM=be604dc6b3650c78daaa02ea4db8cd067069b5e1
-
- May 16, 2016
-
-
Deomid Ryabkov authored
cesanta/mongoose#573 PUBLISHED_FROM=687722f0dbc3c49e6691e01e0d0b1ab2d181bd2f
-
Sergey Lyubka authored
PUBLISHED_FROM=f00b94cabc2a89d27d5bc78d68d67db0930811b4
-
- May 15, 2016
-
-
Dmitry Frank authored
We wanted to avoid `to` since it implies some kind of conversion, but these functions merely return underlying C entity. Public API changes: - `v7_to_number()` -> `v7_get_double()` - `v7_to_boolean()` -> `v7_get_bool()` - `v7_to_cstring()` -> `v7_get_cstring()` - `v7_get_string_data()` -> `v7_get_string()` - `v7_to_foreign()` -> `v7_get_ptr()` Private API changes: - `v7_to_pointer()` -> `get_ptr()` - `v7_to_generic_object()` -> `get_generic_object_struct()` - `v7_to_object()` -> `get_object_struct()` - `to_js_function()` -> `get_js_function_struct()` - `to_cfunction()` -> `get_cfunction_ptr()` PUBLISHED_FROM=036ac18d442c1128106292ad3e7a818b177eec6a
-
- May 03, 2016
-
-
Deomid Ryabkov authored
Code size: 167144 vs 199440 More changes to come (console support, warnings cleanup). PUBLISHED_FROM=cbc06efcb354c240654518b493496a69293ebc2a
-
- Apr 29, 2016
-
-
Deomid Ryabkov authored
When getting a EOF from remote, do not close immediately, drain the send buffer. PUBLISHED_FROM=e06cdaa2abc0d67d5d88bf3e72d887590a7aeccf
-
Deomid Ryabkov authored
PUBLISHED_FROM=0bf765bf2248d43514643f335592a77d5875618e
-
- Apr 26, 2016
-
-
Deomid Ryabkov authored
h/t @danielinux, cesanta/mongoose#652 PUBLISHED_FROM=68c9a86280d63d01b6e4cb72aa6cfd766e4d4be3
-
Deomid Ryabkov authored
HTTP/1.1 connections are keep-alive by default, HTTP/1.0 are KA only if explicitly requested. PUBLISHED_FROM=cb2070c2d4e4be6beeab4ae5914b8a01b04bc0cb
-
Deomid Ryabkov authored
Server header and directory index footer PUBLISHED_FROM=85ced96f70a0241a2970be7613994a3af7238ba9
-
- Apr 22, 2016
-
-
Deomid Ryabkov authored
We used to declare these functions twice: in plaform_windows.h and cs_dirent.h. Removed decl from platform_windows.h and moved cs_dirent.h to be privately included by mongoose.c PUBLISHED_FROM=ab62370409e29e3c62a8b8eab0f75795b5d7ed0f
-
Deomid Ryabkov authored
h/t @f00bard PUBLISHED_FROM=5deab05502797bb6393e8dbbd5684aba4a72a799
-