[Oisf-devel] [COMMIT] OISF branch, master, updated. suricata-1.2.1-147-g4a186bc
noreply at openinfosecfoundation.org
noreply at openinfosecfoundation.org
Fri Mar 9 17:50:39 UTC 2012
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "OISF".
The branch, master has been updated
via 4a186bcf1d3c8aa180c4a95d4fa6fe048b9c3f26 (commit)
via 979edf0b974d7d8dbe1dd0020590fbb43f668850 (commit)
via fddaca6e8b8458be050e2c771854992a5bef7bae (commit)
via d72b82fae07c44b55aa9d289a6245f24aff183ae (commit)
via 8448333bdd8e30fc24e9aa456fe2faf270208f8f (commit)
via 0150e66ede787dd0b164d5d4a3195f69dabc7b23 (commit)
via da5087a0c0398fbb86e3f4d4e33c5c175b371c70 (commit)
via aae7ea5e676502500518dc735c77e4e44a62d042 (commit)
via 1a46d7a53aeb18ec4f813125e449cbbeb63884a8 (commit)
via 9b2bd9280a945f98353da8daa342d648d3eeb814 (commit)
via 0bcbd233434e9dd34d03c2457788de11835e2d85 (commit)
via 0b09416a482deaa8c2895135e61030a246495550 (commit)
via 89cee0ad49898775570d22ae3fdbdb44fa9e4947 (commit)
from 8350fdd9beb30561f1c4f2a50c440068b60abd65 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 4a186bcf1d3c8aa180c4a95d4fa6fe048b9c3f26
Author: Victor Julien <victor at inliniac.net>
Date: Fri Mar 9 18:50:23 2012 +0100
Fix invalid declaration of enable_nss and enable_nspr in configure.in.
commit 979edf0b974d7d8dbe1dd0020590fbb43f668850
Author: Victor Julien <victor at inliniac.net>
Date: Fri Mar 9 17:45:09 2012 +0100
Add way to profile mutex/spin locks per thread module.
commit fddaca6e8b8458be050e2c771854992a5bef7bae
Author: Victor Julien <victor at inliniac.net>
Date: Fri Mar 9 13:19:02 2012 +0100
Implement stream memcap enforcements using atomics instead of spinlocked counters.
commit d72b82fae07c44b55aa9d289a6245f24aff183ae
Author: Victor Julien <victor at inliniac.net>
Date: Fri Mar 9 18:36:07 2012 +0100
Misc fixes.
commit 8448333bdd8e30fc24e9aa456fe2faf270208f8f
Author: Victor Julien <victor at inliniac.net>
Date: Fri Mar 9 18:34:25 2012 +0100
Remove trailing zero's from some counters output.
commit 0150e66ede787dd0b164d5d4a3195f69dabc7b23
Author: Victor Julien <victor at inliniac.net>
Date: Fri Mar 9 18:31:46 2012 +0100
flow engine: improve scalability
Major redesign of the flow engine. Remove the flow queues that turned
out to be major choke points when using many threads. Flow manager now
walks the hash table directly. Simplify the way we get a new flow in
case of emergency.
commit da5087a0c0398fbb86e3f4d4e33c5c175b371c70
Author: Victor Julien <victor at inliniac.net>
Date: Thu Mar 8 16:36:14 2012 +0100
Fix broken unittest.
commit aae7ea5e676502500518dc735c77e4e44a62d042
Author: Eileen Donlon <emdonlo at gmail.com>
Date: Mon Mar 5 19:50:12 2012 -0500
add null checks to fix bugs in StreamTcpTest23
commit 1a46d7a53aeb18ec4f813125e449cbbeb63884a8
Author: Eileen Donlon <emdonlo at gmail.com>
Date: Mon Mar 5 19:31:26 2012 -0500
fix more invalid content unittests
fix invalid unittests with mixed relative and non-relative content modifiers and other issues; DetectContentParse19 still contains some failing dce_stub tests which are commented out.
commit 9b2bd9280a945f98353da8daa342d648d3eeb814
Author: Eileen Donlon <emdonlo at gmail.com>
Date: Mon Feb 13 10:45:29 2012 -0500
fix invalid unittests with mixed content modifiers
Fixed some unittests that were incorrectly mixing relative and non-relative content modifiers.
commit 0bcbd233434e9dd34d03c2457788de11835e2d85
Author: Eileen Donlon <emdonlo at gmail.com>
Date: Thu Jan 26 13:06:03 2012 -0500
reject mixed relative and non-relative keywords
reject signatures using relative and non-relative positional keywords for the same content (depth or offset with distance or within)
commit 0b09416a482deaa8c2895135e61030a246495550
Author: Eileen Donlon <emdonlo at gmail.com>
Date: Tue Mar 6 17:03:29 2012 -0500
reject invalid combinations of pcre modifiers
don't allow /B with normalized buffers, and don't mix modifiers for normalized and raw buffers
commit 89cee0ad49898775570d22ae3fdbdb44fa9e4947
Author: Victor Julien <victor at inliniac.net>
Date: Mon Mar 5 14:51:28 2012 +0100
Add libnss/libnspr support output to configure. Clean up configure.in.
-----------------------------------------------------------------------
Summary of changes:
configure.in | 457 +++++++++++----------
src/counters.c | 2 +-
src/decode.h | 6 +
src/detect-byte-extract.c | 55 +--
src/detect-content.c | 88 ++--
src/detect-depth.c | 6 +
src/detect-distance.c | 6 +
src/detect-engine-dcepayload.c | 94 ----
src/detect-http-client-body.c | 9 +-
src/detect-http-server-body.c | 9 +-
src/detect-offset.c | 7 +-
src/detect-pcre.c | 40 ++-
src/detect-within.c | 6 +
src/flow-hash.c | 192 ++++++---
src/flow-hash.h | 38 ++-
src/flow-manager.c | 622 ++++++++++++++++++++++++---
src/flow-manager.h | 5 +-
src/flow-private.h | 19 +-
src/flow-queue.c | 146 +------
src/flow-queue.h | 41 ++-
src/flow-timeout.c | 203 +++++-----
src/flow-timeout.h | 3 +-
src/flow-util.c | 2 +-
src/flow-util.h | 2 +-
src/flow.c | 915 ++-------------------------------------
src/flow.h | 15 +-
src/source-pcap-file.c | 2 +-
src/stream-tcp-reassemble.c | 82 +---
src/stream-tcp.c | 88 ++---
src/stream.c | 5 +
src/suricata.c | 1 -
src/threads.h | 55 +++
src/tm-modules.c | 3 +
src/tm-threads.c | 12 +-
src/util-profiling.c | 42 ++-
src/util-profiling.h | 27 ++
36 files changed, 1494 insertions(+), 1811 deletions(-)
hooks/post-receive
--
OISF
More information about the Oisf-devel
mailing list