Lines Matching refs:action
757 const char *action, int action_len, in web_connection_send_reply() argument
821 wpabuf_put_data(buf, action, action_len); in web_connection_send_reply()
836 wpabuf_put_data(buf, action, action_len); in web_connection_send_reply()
867 char *action; in web_get_action() local
890 action = b; in web_get_action()
895 *action_len = b - action; in web_get_action()
896 return action; in web_get_action()
925 const char *action = NULL; in web_connection_parse_post() local
938 action = web_get_action(req, &action_len); in web_connection_parse_post()
939 if (action == NULL) in web_connection_parse_post()
942 if (!os_strncasecmp("GetDeviceInfo", action, action_len)) in web_connection_parse_post()
944 else if (!os_strncasecmp("PutMessage", action, action_len)) in web_connection_parse_post()
946 else if (!os_strncasecmp("PutWLANResponse", action, action_len)) in web_connection_parse_post()
949 else if (!os_strncasecmp("SetSelectedRegistrar", action, action_len)) in web_connection_parse_post()
958 web_connection_send_reply(req, ret, action, action_len, reply, in web_connection_parse_post()