Displaying 2 results from an estimated 2 matches for "http_decode".
Did you mean:
http_code
2003 Aug 28
0
[louisk@bend.com: snort, postgres, bridge]
...ist] - use the space separated list of ports in [list], "all"
# will turn on reassembly for all ports, "default" will turn
# on reassembly for ports 21, 23, 25, 53, 80, 143, 110, 111
# and 513
preprocessor stream4_reassemble
# http_decode: normalize HTTP requests
# ------------------------------------
# http_decode normalizes HTTP requests from remote
# machines by converting any %XX character
# substitutions to their ASCII equivalent. This is
# very useful for doing things like defeating hostile
# attackers trying to stealth themse...
2005 May 25
0
[PATCH] Fix fuction prototypes/definitions with void argument
...ror_)
return -2;
@@ -407,7 +407,7 @@ int FLAC_XMMS__get_time()
return flac_ip.output->output_time();
}
-void FLAC_XMMS__cleanup()
+void FLAC_XMMS__cleanup(void)
{
decoder_func_table_ -> safe_decoder_delete(decoder_);
decoder_ = 0;
@@ -668,7 +668,7 @@ static const decoder_funcs_t HTTP_DECODE
static decoder_funcs_t const *decoder_func_table_;
-static void init_decoder_func_tables()
+static void init_decoder_func_tables(void)
{
DECODER_FUNCS [DECODER_FILE] = & FILE_DECODER_FUNCTIONS;
DECODER_FUNCS [DECODER_HTTP] = & HTTP_DECODER_FUNCTIONS;
--- src/plugin_xmms/configure....