Ver código fonte

modules: readme files regenerated - nghttp2 ... [skip ci]

Kamailio Dev 2 meses atrás
pai
commit
64bc28f127
1 arquivos alterados com 4 adições e 4 exclusões
  1. 4 4
      src/modules/nghttp2/README

+ 4 - 4
src/modules/nghttp2/README

@@ -184,15 +184,15 @@ event_route[nghttp2:request] {
    The event route is executed when a new HTTP request is received.
 
    Inside it, the $nghttp2(...) group of variables is available, giving
-   access to several attributes of the HTTP request, such as method, URL,
-   data (body) or headers.
+   access to several attributes of the HTTP request, such as method, URL
+   path, data (body) or headers.
 ...
 ...
 loadmodule "nghttp2.so
 ...
 event_route[nghttp2:request] {
-    xinfo("request: $nghttp2(method) - url: $nghttp2(url) - data: [$nghttp2(data
-)]\n");
+    xinfo("request: $nghttp2(method) - url: $nghttp2(path) - data: [$nghttp2(dat
+a)]\n");
     nghttp2_reply("200", "OK", "text/html",
         "<html><body>OK</body></html>");
 }