Home | History | Annotate | Download | only in wps

Lines Matching refs:wps

2  * UPnP WPS Device - Web connections
274 * WFA WPS specifications. Extra white space has been removed to save space.
544 s = sm->wps->friendly_name;
545 s = ((s && *s) ? s : "WPS Access Point");
548 s = sm->wps->dev.manufacturer;
552 if (sm->wps->manufacturer_url)
554 sm->wps->manufacturer_url);
556 if (sm->wps->model_description)
558 sm->wps->model_description);
560 s = sm->wps->dev.model_name;
564 if (sm->wps->dev.model_number)
566 sm->wps->dev.model_number);
568 if (sm->wps->model_url)
569 xml_add_tagged_data(buf, "modelURL", sm->wps->model_url);
571 if (sm->wps->dev.serial_number)
573 sm->wps->dev.serial_number);
575 uuid_bin2str(sm->wps->uuid, uuid_string, sizeof(uuid_string));
584 if (sm->wps->upc)
585 xml_add_tagged_data(buf, "UPC", sm->wps->upc);
693 wpa_printf(MSG_DEBUG, "WPS UPnP: HTTP GET for device XML");
696 if (sm->wps->friendly_name)
697 extra_len += os_strlen(sm->wps->friendly_name);
698 if (sm->wps->manufacturer_url)
699 extra_len += os_strlen(sm->wps->manufacturer_url);
700 if (sm->wps->model_description)
701 extra_len += os_strlen(sm->wps->model_description);
702 if (sm->wps->model_url)
703 extra_len += os_strlen(sm->wps->model_url);
704 if (sm->wps->upc)
705 extra_len += os_strlen(sm->wps->upc);
707 wpa_printf(MSG_DEBUG, "WPS UPnP: HTTP GET for SCPD XML");
712 wpa_printf(MSG_DEBUG, "WPS UPnP: HTTP GET file not found: %s",
809 wpa_printf(MSG_DEBUG, "WPS UPnP: GetDeviceInfo");
814 wpa_printf(MSG_INFO, "WPS UPnP: Failed to get DeviceInfo");
831 * PutMessage is used by external UPnP-based Registrar to perform WPS
835 wpa_printf(MSG_DEBUG, "WPS UPnP: PutMessage");
858 wpa_printf(MSG_DEBUG, "WPS UPnP: GetAPSettings");
880 wpa_printf(MSG_DEBUG, "WPS UPnP: SetAPSettings");
903 wpa_printf(MSG_DEBUG, "WPS UPnP: DelAPSettings");
927 wpa_printf(MSG_DEBUG, "WPS UPnP: GetSTASettings");
949 wpa_printf(MSG_DEBUG, "WPS UPnP: SetSTASettings");
972 wpa_printf(MSG_DEBUG, "WPS UPnP: DelSTASettings");
1004 wpa_printf(MSG_DEBUG, "WPS UPnP: PutWLANResponse");
1029 wpa_printf(MSG_DEBUG, "WPS UPnP: Message Type %d", type);
1035 wpa_printf(MSG_INFO, "WPS UPnP: Fail: sm->ctx->"
1055 wpa_printf(MSG_DEBUG, "WPS UPnP: SetSelectedRegistrar");
1078 wpa_printf(MSG_DEBUG, "WPS UPnP: RebootAP");
1101 wpa_printf(MSG_DEBUG, "WPS UPnP: ResetAP");
1124 wpa_printf(MSG_DEBUG, "WPS UPnP: RebootSTA");
1147 wpa_printf(MSG_DEBUG, "WPS UPnP: ResetSTA");
1209 wpa_printf(MSG_INFO, "WPS UPnP: Cannot allocate reply to "
1300 wpa_printf(MSG_INFO, "WPS UPnP: Invalid POST filename %s",
1410 wpa_printf(MSG_INFO, "WPS UPnP: Unknown POST type");
1414 wpa_printf(MSG_INFO, "WPS UPnP: POST failure ret=%d", ret);
1472 wpa_printf(MSG_DEBUG, "WPS UPnP: HTTP SUBSCRIBE for event");
1675 wpa_printf(MSG_DEBUG, "WPS UPnP: HTTP UNSUBSCRIBE for event");
1724 wpa_printf(MSG_DEBUG, "WPS UPnP: Unsubscribing %p %s",
1733 wpa_printf(MSG_INFO, "WPS UPnP: Unsubscribe fails (not "
1776 wpa_printf(MSG_INFO, "WPS UPnP: Could not get HTTP URI");
1783 wpa_printf(MSG_DEBUG, "WPS UPnP: Got HTTP request type %d from %s:%d",
1828 * @sm: WPS UPnP state machine from upnp_wps_device_init()
1832 * The socket descriptor sd is handed over for ownership by the WPS UPnP
1912 wpa_printf(MSG_ERROR, "WPS UPnP: web listener accept "