Lines Matching refs:network
671 yyerror("bad IPv4 network address.");
986 struct unity_network network;
987 memset(&network,0,sizeof(network));
989 if (inet_pton(AF_INET, $1->v, &network.addr4) != 1)
993 network.mask4.s_addr = ($2) ? htonl(~((1 << (32 - $2)) - 1)) : 0;
995 /* add the network to our list */
996 if (splitnet_list_add(&icc->splitnet_list, &network,&icc->splitnet_count))
997 yyerror("Unable to allocate split network");