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

feat: add IPv6 support #5775

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

feat: add IPv6 support #5775

wants to merge 6 commits into from

Commits on Nov 29, 2023

  1. feat: add IPv6 support

    close: vesoft-inc#4955
    
    Now it should support dual stack for some friends in community.
    This roughly change is targeted to create a branch for their
    quick testing on IPv6 only env(that doesnt come with a DNS)
    
    Note intToIPv4 is not handled due to it's probabbly for metad
    of NebulaGraph v1 only.
    wey-gu committed Nov 29, 2023
    Configuration menu
    Copy the full SHA
    e1d7b00 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    f605095 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    604d85b View commit details
    Browse the repository at this point in the history

Commits on Dec 1, 2023

  1. chore: make linter happy

    export CPPLINT_EXTENS=cpp,h
    export CPPLINT_FILTER=-whitespace/indent,-build/include_what_you_use,-readability/todo,-build/include,-build/header_guard,-runtime/references,-build/c++11
    
    .linters/cpp/cpplint.py --quiet --extensions=$CPPLINT_EXTENS \
                    --filter=$CPPLINT_FILTER --linelength=100 src/common/network/NetworkUtils.cpp
    wey-gu committed Dec 1, 2023
    Configuration menu
    Copy the full SHA
    427a504 View commit details
    Browse the repository at this point in the history
  2. chore: make formatter happy

    patch.diff from formatter
    cd src
    git apply --reject --whitespace=fix ../patch.diff
    wey-gu committed Dec 1, 2023
    Configuration menu
    Copy the full SHA
    5240929 View commit details
    Browse the repository at this point in the history
  3. ut: removing cpptest for domain names

    it turned out this case should be resolved properly in
    running env, as it's not a mock call. Thus we remove it.
    wey-gu committed Dec 1, 2023
    Configuration menu
    Copy the full SHA
    9da0cc4 View commit details
    Browse the repository at this point in the history