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

Stephan Holljes klaxa1337 at googlemail.com
Fri Jun 1 01:24:12 EEST 2018


Signed-off-by: Stephan Holljes <klaxa1337 at googlemail.com>
---
 httpd.h | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

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 */
-- 
2.16.2



More information about the ffmpeg-devel mailing list