Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update openssl-server.c #2882

Open
wants to merge 7 commits into
base: main
Choose a base branch
from
Open

Commits on May 23, 2023

  1. Update openssl-server.c

    string 702: add  "enum lws_ssl_capable_status"
    GuzhavinAleksey authored May 23, 2023
    Configuration menu
    Copy the full SHA
    bafd930 View commit details
    Browse the repository at this point in the history

Commits on Nov 9, 2023

  1. net: lws_wol() and lws_parse_mac()

    Introduce a LWS_WITH_WOL and an api to wake a mac address, optionally with
    an address bind to the local interface to go out on.
    
    Add a helper to parse ascii mac addresses well, and add tests.
    lws-team committed Nov 9, 2023
    1 Configuration menu
    Copy the full SHA
    5bcc5ac View commit details
    Browse the repository at this point in the history

Commits on Nov 10, 2023

  1. clean: gcc13 false positive uninitialized

    Carsten Schuette authored and lws-team committed Nov 10, 2023
    Configuration menu
    Copy the full SHA
    bfce9f8 View commit details
    Browse the repository at this point in the history

Commits on Nov 11, 2023

  1. buflist: append: treat NULL additional buf as error not assert

    Very very occasionally on server we try to add a NULL buffer to a buflist.
    
    Let's try dealing with that by failing (caller must always be able to
    handle failure from OOM) rather than asserting.
    lws-team committed Nov 11, 2023
    Configuration menu
    Copy the full SHA
    288f36f View commit details
    Browse the repository at this point in the history

Commits on Nov 13, 2023

  1. b64: lws_b64_decode_stateful truncates response

    Addresses issue warmcat#2855 by allowing the parsing of the final byte when there are at least 3 bytes remaining in the buffer.
    
    For every 4 bytes of input, a maximum of 3 bytes of output are generated when decoding the base64 string. The buffer space, therefore, only requires an additional 3 bytes of space. The code checks for space in the buffer before adding null termination.
    darhaywa authored and lws-team committed Nov 13, 2023
    Configuration menu
    Copy the full SHA
    0586d01 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    a99b954 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    a2d51ba View commit details
    Browse the repository at this point in the history