Lines Matching defs:pss
24 * Unlike ws, http is a stateless protocol. This pss only exists for the
28 struct pss {
43 struct pss *pss = (struct pss *)user;
70 lws_snprintf(pss->path, sizeof(pss->path), "%s",
75 (const char *)buf, pss->path);
116 pss->times = 0;
117 pss->budget = atoi((char *)in + 1);
118 pss->content_lines = 0;
119 if (!pss->budget)
120 pss->budget = 10;
129 if (!pss || pss->times > pss->budget)
152 if (pss->times == pss->budget)
155 if (!pss->times) {
171 "</body></html>", pss->path,
188 pss->times, pss->content_lines++);
193 pss->times++;
220 { "http", callback_dynamic_http, sizeof(struct pss), 0, 0, NULL, 0 };