Skip to content
Snippets Groups Projects
  1. Oct 05, 2016
    • Deomid Ryabkov's avatar
      Add MG_EV_SSI_CALL_CTX · f9a6403b
      Deomid Ryabkov authored
      This is the variant of MG_EV_SSI_CALL with context of the SSI call being
      processed in addition to the tag argument. Specifically, call handler
      now gets access to the HTTP request and the name of the file being processed.
      
      MG_EV_SSI_CALL is preserved for backward compatibility.
      
      PUBLISHED_FROM=eeea7487c062505abdb23b6f64994ff7a6b60ff8
      f9a6403b
  2. Sep 30, 2016
  3. Sep 28, 2016
  4. Sep 27, 2016
    • Deomid Ryabkov's avatar
      Amalgamation changes - clean up paths · 4d76a3be
      Deomid Ryabkov authored
      Make paths embedded in amalgamated files nice and relative.
      This facilitates subsequent clean un- and re-amalgamation.
      
      PUBLISHED_FROM=d83e6000617c54ceaeb78b80c25814996043fe66
      4d76a3be
  5. Sep 22, 2016
  6. Sep 15, 2016
  7. Sep 13, 2016
  8. Sep 12, 2016
  9. Sep 05, 2016
  10. Sep 01, 2016
  11. Aug 29, 2016
    • Deomid Ryabkov's avatar
      C Clubby refactoring · 0fe9ec14
      Deomid Ryabkov authored
      Complete rewrite of the C Clubby implementation: it is now modeled after
      the Go implementation, with a slight difference that codec and channel
      are the same object (something we should probably do in Go as well, as
      we only have a single type of channel so far, which is used with all
      types of codecs).
      
      This implementation also comes with a new external API,
      which is hopefully cleaner and easier to use (see mg_clubby.h).
      
      In this PR I am not adding any new types of channels, but a UART channel
      as well as websocket listener channel will be added after this lands.
      
      PUBLISHED_FROM=d545d4bb6434e2a02ad159f9e4b64e594a4797e7
      0fe9ec14
  12. Aug 19, 2016
  13. Aug 18, 2016
  14. Aug 09, 2016
    • Deomid Ryabkov's avatar
      Make mg_http_serve_file public · 5fa544fc
      Deomid Ryabkov authored
      A way to serve a single, specific file as opposed to the hairy monster
      that is mg_serve_http.
      
      PUBLISHED_FROM=6ed1bc487b9d41d212a5907337182f23b040aecf
      5fa544fc
  15. Jul 26, 2016
  16. Jul 22, 2016
  17. Jul 21, 2016
  18. Jul 20, 2016
  19. Jul 14, 2016
    • Deomid Ryabkov's avatar
      Fix SSL stuff · 9f78a290
      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
      9f78a290
  20. Jul 12, 2016
  21. Jul 07, 2016
  22. Jul 06, 2016
  23. Jul 01, 2016
  24. Jun 09, 2016
    • rojer's avatar
      SimpleLink net_if impl w/ async support; MG_F_SSL · 1d4f97bb
      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
      1d4f97bb
    • rojer's avatar
      SimpleLink SSL support; split cert and key opts · dcf1cede
      rojer authored
      SL requires cert and key to be separate files in DER format.
      
      Date verification is disabled for now.
      
      PUBLISHED_FROM=7d76150ed356140728a1e5fd82d8a0456347b7dc
      dcf1cede
  25. Jun 07, 2016
    • rojer's avatar
      Fix compilation with MG_DISABLE_HTTP_WEBSOCKET · 04a38b44
      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
      04a38b44
  26. May 28, 2016
    • Dmitry Frank's avatar
      Add v7 arg to _mk_ and _get_ functions · 177e829f
      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
      177e829f
Loading