winlin

for bug #159: postpone the http server bug to 2.0+

@@ -31,7 +31,7 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. @@ -31,7 +31,7 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
31 // current release version 31 // current release version
32 #define VERSION_MAJOR "0" 32 #define VERSION_MAJOR "0"
33 #define VERSION_MINOR "9" 33 #define VERSION_MINOR "9"
34 -#define VERSION_REVISION "220" 34 +#define VERSION_REVISION "221"
35 #define RTMP_SIG_SRS_VERSION VERSION_MAJOR"."VERSION_MINOR"."VERSION_REVISION 35 #define RTMP_SIG_SRS_VERSION VERSION_MAJOR"."VERSION_MINOR"."VERSION_REVISION
36 // server info. 36 // server info.
37 #define RTMP_SIG_SRS_KEY "SRS" 37 #define RTMP_SIG_SRS_KEY "SRS"
@@ -191,6 +191,12 @@ int main(int argc, char** argv) @@ -191,6 +191,12 @@ int main(int argc, char** argv)
191 // features 191 // features
192 show_macro_features(); 192 show_macro_features();
193 193
  194 + // for special features.
  195 +#ifdef SRS_AUTO_HTTP_SERVER
  196 + srs_warn("http server is dev feature, "
  197 + "@see https://github.com/winlinvip/simple-rtmp-server/wiki/HTTPServer#feature");
  198 +#endif
  199 +
194 /** 200 /**
195 * we do nothing in the constructor of server, 201 * we do nothing in the constructor of server,
196 * and use initialize to create members, set hooks for instance the reload handler, 202 * and use initialize to create members, set hooks for instance the reload handler,