diff mbox

[FFmpeg-devel,19/22] httpd.h: make comments doxygen

Message ID 20180531222415.24966-20-klaxa1337@googlemail.com
State New
Headers show

Commit Message

Stephan Holljes May 31, 2018, 10:24 p.m. UTC
Signed-off-by: Stephan Holljes <klaxa1337@googlemail.com>
---
 httpd.h | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)
diff mbox

Patch

diff --git a/httpd.h b/httpd.h
index fb1337d..83535e0 100644
--- a/httpd.h
+++ b/httpd.h
@@ -52,11 +52,12 @@  struct HTTPDConfig {
 
 /** HTTPClient struct, this information is shared between ffserver and the httpd implementation */
 struct HTTPClient {
-    /* the method requested by the client, this field has to be set and freed by the httpd implementation */
+    /** the method requested by the client, this field has to be set and freed by the httpd implementation */
     char *method;
-    /* the resource requested by the client, this field has to be set and freed by the httpd implementation */
+    /** the resource requested by the client, this field has to be set and freed by the httpd implementation */
     char *resource;
-    void *httpd_data; // httpd implementation specific data
+    /** httpd implementation specific data */
+    void *httpd_data;
 };
 
 /** HTTPDInterface that an httpd implementation must provide */