Lines Matching refs:network
766 yyerror("bad IPv4 network address.");
1081 struct unity_network network;
1082 memset(&network,0,sizeof(network));
1084 if (inet_pton(AF_INET, $1->v, &network.addr4) != 1)
1088 network.mask4.s_addr = ($2) ? htonl(~((1 << (32 - $2)) - 1)) : 0;
1090 /* add the network to our list */
1091 if (splitnet_list_add(&icc->splitnet_list, &network,&icc->splitnet_count))
1092 yyerror("Unable to allocate split network");