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

Add generic IP utilities #3038

Merged
merged 9 commits into from
Aug 20, 2019
Merged

Add generic IP utilities #3038

merged 9 commits into from
Aug 20, 2019

Conversation

a7md0
Copy link
Contributor

@a7md0 a7md0 commented Jul 28, 2019

WiFiGeneric:
calculateNetworkID(IPAddress ip, IPAddress subnet) => Calculate the network id using the IP and subnet (e.g. 192.168.0.0)
calculateBroadcast(IPAddress ip, IPAddress subnet) => Calculate the broadcast IP using the IP and subnet (e.g. 192.168.0.255)
calculateSubnetCIDR(IPAddress subnetMask) => Calculate the subnet CIDR using the subnet (e.g. 24)

WiFiAP:
softAPBroadcastIP() => Retrieve the network id (e.g. 192.168.0.0)
softAPNetwrokID() => Retrieve the broadcast IP (e.g. 192.168.0.15)
softAPSubnetCIDR() => Retrieve the subnet CIDR (e.g. 28)

WiFiSTA:
broadcastIP() => Retrieve the network id (e.g. 192.168.0.0)
netwrokID() => Retrieve the broadcast IP (e.g. 192.168.0.255)
subnetCIDR() => Retrieve the subnet CIDR (e.g. 24)

ETH:
broadcastIP() => Retrieve the network id (e.g. 172.16.0.0)
netwrokID() => Retrieve the broadcast IP (e.g. 172.16.255.255)
subnetCIDR() => Retrieve the subnet CIDR (e.g. 16)

a7md0 added 4 commits July 28, 2019 18:48
Add:
calculateNetworkID(IPAddress ip, IPAddress subnet) => Calculate the network id using the ip and subnet (e.g. 192.168.0.0)
calculateBroadcast(IPAddress ip, IPAddress subnet) => Calculate the broadcast ip using the ip and subnet (e.g. 192.168.0.255)
calculateSubnetCIDR(IPAddress subnetMask) => Calculate the subnet CIDR using the subnet (e.g. 24)
Add:
broadcastIP() => Retrieve the network id (e.g. 192.168.0.0)
networkID() => Retrieve the broadcast IP (e.g. 192.168.0.255)
subnetCIDR() => Retrieve the subnet CIDR (e.g. 24)
Add:
broadcastIP() => Retrieve the network id (e.g. 192.168.0.0)
networkID() => Retrieve the broadcast IP (e.g. 192.168.0.255)
subnetCIDR() => Retrieve the subnet CIDR (e.g. 24)
Add:
softAPBroadcastIP() => Retrieve the network id (e.g. 192.168.0.0)
softAPNetwrokID() => Retrieve the broadcast IP (e.g. 192.168.0.255)
softAPSubnetCIDR() => Retrieve the subnet CIDR (e.g. 24)
@me-no-dev me-no-dev merged commit 91b9fae into espressif:master Aug 20, 2019
@me-no-dev
Copy link
Member

nice! :)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants