Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: smoltcp-rs/smoltcp
base: 1ada3da5aa33
Choose a base ref
...
head repository: smoltcp-rs/smoltcp
compare: 14bad979545f
Choose a head ref
  • 2 commits
  • 10 files changed
  • 2 contributors

Commits on Sep 30, 2019

  1. Only use first 3 DHCP advertised DNS servers.

    The OPT_DOMAIN_NAME_SERVER DHCP option field can advertise an unbounded
    DNS servers, but we currently use a fixed length array to store these
    servers. This commit ensures only the first 3 (highest priority) servers
    are used.
    
    Fixes #305.
    cjbe authored and whitequark committed Sep 30, 2019
    Configuration menu
    Copy the full SHA
    15a3e84 View commit details
    Browse the repository at this point in the history

Commits on Oct 4, 2019

  1. Add ethernet feature-gate as default.

    Disable ethernet-related features and framing based on a feature gate.
    
    Add a no-ethernet option to Travis.
    
    notes:
    - allow(unused) is added when not using ethernet feature
    - Don't run pretty-print doctest, ethernet is optional.
    
    Closes: #308
    Approved by: whitequark
    rubdos authored and Homu committed Oct 4, 2019
    Configuration menu
    Copy the full SHA
    14bad97 View commit details
    Browse the repository at this point in the history