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

Adde methods to se if static IP addresses were configured, and what those addresses are #1720

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Commits on Mar 13, 2024

  1. Adde methods to se if static IP addresses were configured, and what

    those addresses are:
        //check if static network configuration is set
        bool          isStaticIp(void);
    
        //provides static host ip address provided method isStaticIp() returns true
        void          getStaticIp(IPAddress* staticIp);
    
        //provides static gateway ip address provided method isStaticIp() returns true
        void          getStaticGw(IPAddress* staticGw);
    
        //provides static network mask provided method isStaticIp() returns true
        void          getStaticSn(IPAddress* staticSn);
    
        //provides static DNS ip address provided method isStaticIp() returns true
        void          getStaticDns(IPAddress* staticDns);
    jonasbjurel committed Mar 13, 2024
    Configuration menu
    Copy the full SHA
    337278c View commit details
    Browse the repository at this point in the history