Signed-off-by: Stephan Holljes <[email protected]>
---
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
_______________________________________________
ffmpeg-devel mailing list
[email protected]
http://ffmpeg.org/mailman/listinfo/ffmpeg-devel