Lines Matching refs:network

255 				BMessage network;
256 result = fSettings.GetNextNetwork(index, network);
258 result = reply.AddMessage("network", &network);
268 BMessage network = *message;
269 status_t result = fSettings.AddNetwork(network);
548 for (int32 index = 0; message.FindMessage("network", index,
561 fprintf(stderr, "%s: joining network \"%s\" failed: %s\n",
588 || path.Append("network/resolv.conf") != B_OK)
702 without losing the network configuration.
822 /*! Configure the link local address based on the network card's MAC address
901 Need to blast an icmp packet over the IPv6 network from :: to ensure
902 there aren't duplicate MAC addresses on the network. (definitely an
960 wireless_network network;
967 status = device.GetNetwork(link, network);
969 status = device.GetNetwork(networkName, network);
973 network.name);
974 printf("auto join network \"%s\": %s\n", network.name,
1001 // No name specified, we need a network address
1006 // Search for a network configuration that may override the defaults
1035 // Get network
1037 wireless_network network;
1041 || device.GetNetwork(*address, network) != B_OK)
1042 && device.GetNetwork(name, network) != B_OK) {
1043 // We did not find a network - just ignore that, and continue
1045 strlcpy(network.name, name != NULL ? name : "", sizeof(network.name));
1046 network.address = *address;
1047 network.authentication_mode = B_NETWORK_AUTHENTICATION_NONE;
1048 network.cipher = 0;
1049 network.group_cipher = 0;
1050 network.key_mode = 0;
1061 network.authentication_mode = B_NETWORK_AUTHENTICATION_WPA2;
1062 network.key_mode = B_KEY_MODE_IEEE802_1X;
1063 network.cipher = network.group_cipher = B_NETWORK_CIPHER_CCMP;
1065 network.authentication_mode = B_NETWORK_AUTHENTICATION_WPA;
1066 network.key_mode = B_KEY_MODE_IEEE802_1X;
1067 network.cipher = network.group_cipher = B_NETWORK_CIPHER_TKIP;
1069 network.authentication_mode = B_NETWORK_AUTHENTICATION_WEP;
1070 network.key_mode = B_KEY_MODE_NONE;
1071 network.cipher = network.group_cipher = B_NETWORK_CIPHER_WEP_40;
1086 && network.authentication_mode == B_NETWORK_AUTHENTICATION_NONE) {
1087 // We can join this network ourselves.
1089 network.name, strlen(network.name));
1112 status = join.AddString("name", network.name);
1114 status = join.AddFlat("address", &network.address);
1116 status = join.AddUInt32("authentication", network.authentication_mode);
1158 // network we connected ourselves.
1160 wireless_network network;
1163 if (device.GetNextAssociatedNetwork(cookie, network) != B_OK
1164 || network.authentication_mode != B_NETWORK_AUTHENTICATION_NONE) {