Displaying 1 result from an estimated 1 matches for "__ipv4_address".
2009 Sep 23
2
[PATCH node] Introduces the virtual network administration functions.
...rrors.append("The network name can only contain letters, numbers and the underscore, and no spaces.")
+ else:
+ errors.append("Network name must be non-blank and less than 50 characters")
+ elif page is IPV4_ADDRESS_PAGE:
+ if len(self.__ipv4_address.value()) > 0:
+ try:
+ self.__config.set_ipv4_address(self.__ipv4_address.value())
+ return True
+ except Exception, error:
+ errors.append("The network address could not be understood: %s" % str(err...