Lines Matching defs:essid

421 	{ESSID, "essid", do_get_essid, do_set_essid, RW},
713 * essid=ap7-3
714 * essid=linksys
717 * essid=ap7-3
718 * essid=ap7-2
721 * essid=ap7-3
727 * essid=linksys
765 * |"essid= | -+->|"essid= | -+->NULL |"essid= | -+->..->|"wepkeyid| -+->NULL
1009 * a profile uses its essid appending "[]" to denote its section_id.
1051 * when we read an line from file, we gets "essid=ap7-2", this function
1530 " connect essid [wait={n|forever}]\n"), gExecName);
1682 * find the essid of the named profile.
1705 if (strncmp(pae->ae_arg, "essid=", strlen("essid=")) == 0) {
1706 PRTDBG(("essid_of_profile: essid = %s\n",
1730 char essid[34];
1775 " failed to connect to any essid\n"),
1779 (void) strlcpy(essid, ((wl_essid_t *)(gbuf->wldp_buf))->wl_essid_essid,
1780 sizeof (essid));
1781 (void) printf(gettext("%s: autoconf: essid '%s' is selected%s\n"),
1782 gExecName, essid,
1793 "essid '%s'\n"), gExecName, essid);
1800 "essid '%s'\n"), gExecName, essid);
1807 * if the essid of the profile is in the scan list, then it is the wanted.
1930 * do_autoconf: First scan the wlanlist, and select one essid from scan result
2077 char essid[34], bssid[32];
2084 (void) strlcpy(essid, ((wl_essid_t *)(gbuf->wldp_buf))->wl_essid_essid,
2085 sizeof (essid));
2110 if (strncmp(pae->ae_arg, "essid=",
2111 strlen("essid=")) == 0) {
2121 (strcmp(essid, pessid) == 0) &&
2159 * configration files, then we clean all parameters and set essid only
2249 * if there is no 'essid' item in argvnew, the profile
2250 * name(argv[0]) is treated as essid.
2253 if (strncmp(argvnew[i], "essid=", strlen("essid="))
2274 connect = "essid";
2475 * there are an item with content"essid=ap7-2",
2476 * update_aelist(0x..., "essid=myssid2") will update it as "essid=myssid2"
2604 * maxmium essid length
2630 len = snprintf(format, sizeof (format), gettext("essid"));
2638 (void) printf(gettext("essid\t\t\t\tbssid\t\t encryption"
2656 /* display essid */
3148 * linkstauts, essid, encryption and signal strength.
3247 wl_essid_t essid;
3257 (void) memset(&essid, 0x0, sizeof (essid));
3260 essid.wl_essid_length = 0;
3261 essid.wl_essid_essid[0] = '\0';
3263 essid.wl_essid_length = strlen(arg);
3264 if (essid.wl_essid_length > MAX_ESSID_LENGTH - 1) {
3266 "essid exceeds 32 bytes\n"), gExecName);
3269 (void) strcpy(essid.wl_essid_essid, arg);
3271 (void) memmove(gbuf->wldp_buf, &essid, sizeof (wl_essid_t));
3886 len = snprintf(format, sizeof (format), gettext("essid"));
3895 (void) printf("essid\t\t\t\tbssid\t\t type\t\t"
4160 * the essid is selected as the profile name. the paramters are
4169 if (strncmp(argv[i], "essid=", strlen("essid=")) == 0) {
4176 "essid required when creating profile\n"),
4184 "non-empty essid required\n"),