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

spliteAddr: support IPv6 #4

Open
wants to merge 6 commits into
base: master
Choose a base branch
from
Open

Commits on Oct 4, 2019

  1. spliteAddr: support IPv6

    When given an IPv4 address, the string spliteAddr
    receives looks like:
      1.2.3.4:123
    Splitting on ":" is fine, because the IP address
    contains only integers and "." chars.
    
    When given an IPv6 address, the string spliteAddr
    receives looks like:
      [2001:0db8:85a3:0000:0000:8a2e:0370:7334]:123
    
    The existing implementation fails on such a string.
    Colons are used within IPv6 addresses.
    
    My patch splits on the last ":" character, which works
    for both IPv4 and IPv6 addresses.
    Brian Tobin committed Oct 4, 2019
    Configuration menu
    Copy the full SHA
    93ba5e9 View commit details
    Browse the repository at this point in the history
  2. Find/replace imports to reference my fork

    Brian Tobin committed Oct 4, 2019
    Configuration menu
    Copy the full SHA
    65a0d41 View commit details
    Browse the repository at this point in the history
  3. Run on non-standard port (6123)

    Brian Tobin committed Oct 4, 2019
    Configuration menu
    Copy the full SHA
    2101daf View commit details
    Browse the repository at this point in the history
  4. Run server 10 years in the past

    Brian Tobin committed Oct 4, 2019
    Configuration menu
    Copy the full SHA
    c639dcc View commit details
    Browse the repository at this point in the history

Commits on Oct 30, 2019

  1. Specify a port as cmdline arg. Default is port 123.

    Brian Tobin committed Oct 30, 2019
    Configuration menu
    Copy the full SHA
    9df2249 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    5ebdb7c View commit details
    Browse the repository at this point in the history