Browse Source

owipcalc: add "prefix" operation to set prefix of base address during calculation

SVN-Revision: 32782
Jo-Philipp Wich 13 years ago
parent
commit
3107a09548
2 changed files with 12 additions and 1 deletions
  1. 1 1
      package/owipcalc/Makefile
  2. 11 0
      package/owipcalc/src/owipcalc.c

+ 1 - 1
package/owipcalc/Makefile

@@ -7,7 +7,7 @@
 include $(TOPDIR)/rules.mk
 
 PKG_NAME:=owipcalc
-PKG_RELEASE:=1
+PKG_RELEASE:=2
 
 include $(INCLUDE_DIR)/package.mk
 

+ 11 - 0
package/owipcalc/src/owipcalc.c

@@ -518,6 +518,12 @@ static bool cidr_howmany(struct cidr *a, struct cidr *b)
 	return true;
 }
 
+static bool cidr_prefix(struct cidr *a, struct cidr *b)
+{
+	a->prefix = b->prefix;
+	return true;
+}
+
 static bool cidr_quiet(struct cidr *a)
 {
 	quiet = true;
@@ -545,6 +551,11 @@ struct op ops[] = {
 	  .desc = "Turn base address into broadcast address",
 	  .f4.a1 = cidr_broadcast4 },
 
+	{ .name = "prefix",
+	  .desc = "Set the prefix of base address to argument",
+	  .f4.a2 = cidr_prefix,
+	  .f6.a2 = cidr_prefix },
+
 	{ .name = "netmask",
 	  .desc = "Print netmask of base address, does not change base address",
 	  .f4.a1 = cidr_netmask4 },