diff options
| author | MattKBD <matt@blz.co> | 2020-09-11 10:56:18 +1200 |
|---|---|---|
| committer | Yuval Adam <_@yuv.al> | 2020-09-11 07:43:56 +0300 |
| commit | 7255c439b2ae05cea8d357e411c781f492416b9c (patch) | |
| tree | 98e4181e2a5924b8582c1d0e38ff63678cf2c8ef /src | |
| parent | d6b1173ca17babf0f076d5cbc0e083c600f27191 (diff) | |
Added "usable" wording with explanation, so people don't keep raising issues like #10, #20, #28
Diffstat (limited to 'src')
| -rw-r--r-- | src/index.html | 3 | ||||
| -rw-r--r-- | src/index.js | 4 |
2 files changed, 4 insertions, 3 deletions
diff --git a/src/index.html b/src/index.html index 23b15c1..bfa05de 100644 --- a/src/index.html +++ b/src/index.html @@ -29,7 +29,8 @@ </header> <section id="app"></section> <footer> - Created by <a href="https://yuv.al">Yuval Adam</a>. Source available on <a href="https://github.com/yuvadm/cidr.xyz">Github</a>. + <p>* For routing mask values <= 30, first and last IPs are base and broadcast addresses and are unusable.</p> + <p>Created by <a href="https://yuv.al">Yuval Adam</a>. Source available on <a href="https://github.com/yuvadm/cidr.xyz">Github</a>.</p> </footer> </body> </html> diff --git a/src/index.js b/src/index.js index 0e26684..f5df9e8 100644 --- a/src/index.js +++ b/src/index.js @@ -127,11 +127,11 @@ class IPAddress extends Component { </span> <span className="first"> <span className="value">{details.first}</span> - <span className="label">First IP</span> + <span className="label">First Usable IP</span> </span> <span className="last"> <span className="value">{details.last}</span> - <span className="label">Last IP</span> + <span className="label">Last Usable IP</span> </span> <span className="count"> <span className="value">{details.size.toLocaleString()}</span> |
