Home
last modified time | relevance | path

Searched refs:method (Results 1 – 1 of 1) sorted by relevance

/DragonOS-0.1.8/user/apps/http_server/
Dmain.c120 char *method, *url, *http_version; in handle_request() local
123 method = strtok(request, " "); in handle_request()
127 printf("handle_request: method: %s, url: %s, http_version: %s\n", method, url, http_version); in handle_request()
129 if (method == NULL || url == NULL || http_version == NULL) in handle_request()
148 if (strcmp(method, "GET") == 0) in handle_request()