Home
last modified time | relevance | path

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

/external/libmicrohttpd/doc/examples/
Dsimplepost.c27 char *answerstring; member
77 char *answerstring; in iterate_post() local
78 answerstring = malloc (MAXANSWERSIZE); in iterate_post()
79 if (!answerstring) in iterate_post()
82 snprintf (answerstring, MAXANSWERSIZE, greetingpage, data); in iterate_post()
83 con_info->answerstring = answerstring; in iterate_post()
86 con_info->answerstring = NULL; in iterate_post()
106 if (con_info->answerstring) in request_completed()
107 free (con_info->answerstring); in request_completed()
128 con_info->answerstring = NULL; in answer_to_connection()
[all …]
Dlargepost.c30 const char *answerstring; member
85 con_info->answerstring = servererrorpage; in iterate_post()
96 con_info->answerstring = fileexistspage; in iterate_post()
112 con_info->answerstring = completepage; in iterate_post()
180 con_info->answerstring = completepage; in answer_to_connection()
218 return send_page (connection, con_info->answerstring, in answer_to_connection()
/external/libmicrohttpd/doc/chapters/
Dprocessingpost.inc63 char *answerstring;
89 char *answerstring;
90 answerstring = malloc (MAXANSWERSIZE);
91 if (!answerstring) return MHD_NO;
93 snprintf (answerstring, MAXANSWERSIZE, greatingpage, data);
94 con_info->answerstring = answerstring;
96 else con_info->answerstring = NULL;
123 if (con_info->answerstring) free (con_info->answerstring);
166 con_info->answerstring = NULL;
225 else if (NULL != con_info->answerstring)
[all …]
Dlargerpost.inc153 con_info->answerstring = completepage;
193 return send_page (connection, con_info->answerstring,
224 con_info->answerstring = servererrorpage;
248 con_info->answerstring = fileexistspage;
274 con_info->answerstring = completepage;
/external/libmicrohttpd/doc/
Dlibmicrohttpd-tutorial.info886 char *answerstring;
910 char *answerstring;
911 answerstring = malloc (MAXANSWERSIZE);
912 if (!answerstring) return MHD_NO;
914 snprintf (answerstring, MAXANSWERSIZE, greatingpage, data);
915 con_info->answerstring = answerstring;
917 else con_info->answerstring = NULL;
941 if (con_info->answerstring) free (con_info->answerstring);
981 con_info->answerstring = NULL;
1025 else if (NULL != con_info->answerstring)
[all …]