diff options
author | Felix Fietkau <nbd@openwrt.org> | 2011-02-13 01:44:57 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2011-02-13 01:44:57 +0000 |
commit | 04ec55e7120eb1cb97b120a84a5c29ea6fc7f429 (patch) | |
tree | c218284f945234a5e12388e43a32c37b5e64ed04 /package/base-files/files/bin | |
parent | 57b078822616090af3337df3694be054820489b7 (diff) | |
download | master-187ad058-04ec55e7120eb1cb97b120a84a5c29ea6fc7f429.tar.gz master-187ad058-04ec55e7120eb1cb97b120a84a5c29ea6fc7f429.tar.bz2 master-187ad058-04ec55e7120eb1cb97b120a84a5c29ea6fc7f429.zip |
base-files: /usr/lib/common.awk is only used by /bin/ipcalc.sh, move the code there
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@25495 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/base-files/files/bin')
-rwxr-xr-x | package/base-files/files/bin/ipcalc.sh | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/package/base-files/files/bin/ipcalc.sh b/package/base-files/files/bin/ipcalc.sh index 318980e5a2..e4826672e8 100755 --- a/package/base-files/files/bin/ipcalc.sh +++ b/package/base-files/files/bin/ipcalc.sh @@ -1,6 +1,27 @@ #!/bin/sh awk -f /usr/lib/common.awk -f - $* <<EOF +function bitcount(c) { + c=and(rshift(c, 1),0x55555555)+and(c,0x55555555) + c=and(rshift(c, 2),0x33333333)+and(c,0x33333333) + c=and(rshift(c, 4),0x0f0f0f0f)+and(c,0x0f0f0f0f) + c=and(rshift(c, 8),0x00ff00ff)+and(c,0x00ff00ff) + c=and(rshift(c,16),0x0000ffff)+and(c,0x0000ffff) + return c +} + +function ip2int(ip) { + for (ret=0,n=split(ip,a,"\."),x=1;x<=n;x++) ret=or(lshift(ret,8),a[x]) + return ret +} + +function int2ip(ip,ret,x) { + ret=and(ip,255) + ip=rshift(ip,8) + for(;x<3;ret=and(ip,255)"."ret,ip=rshift(ip,8),x++); + return ret +} + BEGIN { ipaddr=ip2int(ARGV[1]) netmask=ip2int(ARGV[2]) |