[Oisf-devel] [COMMIT] OISF branch, master, updated. suricata-2.0beta1-44-g4424f5a

noreply at openinfosecfoundation.org noreply at openinfosecfoundation.org
Mon Jul 29 14:11:03 UTC 2013


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  4424f5a2313813579f96ec72e756e0b58071c64b (commit)
       via  8e68b357c705e1e78f6613223d92c66de226ecfd (commit)
       via  42011e2d32c809ecc0655875da1c2dd4f4611f38 (commit)
       via  132bebb2b235d99f99bdf65c68189a0686818cea (commit)
       via  07ef1f98375440540044e1bda4a1c264b19c4aed (commit)
       via  54006de40c10b4dc6a6b049cd458341f0d75e622 (commit)
       via  2be7c8aea8160b3f5ded0f62a97c6cf30f00a112 (commit)
       via  27752818c2fcee94aaad4fe6fd17d12e3eeae433 (commit)
       via  b2fa4edd36205ae4972bae35ff7be80048cc4954 (commit)
       via  9a0bf0956b88e35282d5923dd5e06fc35b64c6dd (commit)
       via  bed48e3a543a253da604e6bc268e1f8fcb720f8a (commit)
       via  135ef0186bb035aa1b377e06f92ef311014fc599 (commit)
      from  5a7bf53a6b1474c687bf25b731199ddddfbfcccb (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 4424f5a2313813579f96ec72e756e0b58071c64b
Author: Eric Leblond <eric at regit.org>
Date:   Mon Jul 29 14:58:07 2013 +0200

    af-packet: add sanity check in free function

commit 8e68b357c705e1e78f6613223d92c66de226ecfd
Author: Eric Leblond <eric at regit.org>
Date:   Tue Jul 16 16:50:45 2013 +0200

    Suppress Suri prefix.

commit 42011e2d32c809ecc0655875da1c2dd4f4611f38
Author: Eric Leblond <eric at regit.org>
Date:   Fri May 10 09:53:20 2013 +0200

    suricata: function for lowercase table creation

commit 132bebb2b235d99f99bdf65c68189a0686818cea
Author: Eric Leblond <eric at regit.org>
Date:   Tue Apr 9 15:22:13 2013 +0200

    Simplify code by removing comment

commit 07ef1f98375440540044e1bda4a1c264b19c4aed
Author: Eric Leblond <eric at regit.org>
Date:   Tue Apr 9 15:16:01 2013 +0200

    suricata: add wrapper for interface listing

commit 54006de40c10b4dc6a6b049cd458341f0d75e622
Author: Eric Leblond <eric at regit.org>
Date:   Tue Apr 9 14:52:02 2013 +0200

    Use new function GetLogDirectory()

commit 2be7c8aea8160b3f5ded0f62a97c6cf30f00a112
Author: Eric Leblond <eric at regit.org>
Date:   Tue Apr 9 14:41:34 2013 +0200

    Add util-conf for config util

commit 27752818c2fcee94aaad4fe6fd17d12e3eeae433
Author: Eric Leblond <eric at regit.org>
Date:   Tue Apr 9 14:25:37 2013 +0200

    suricata: add some wrapper for config file handling

commit b2fa4edd36205ae4972bae35ff7be80048cc4954
Author: Eric Leblond <eric at regit.org>
Date:   Tue Apr 9 12:21:43 2013 +0200

    move unittest out of suricata.c

commit 9a0bf0956b88e35282d5923dd5e06fc35b64c6dd
Author: Eric Leblond <eric at regit.org>
Date:   Tue Apr 9 11:34:12 2013 +0200

    suricata: list cuda cards in separate function

commit bed48e3a543a253da604e6bc268e1f8fcb720f8a
Author: Eric Leblond <eric at regit.org>
Date:   Tue Apr 9 11:05:39 2013 +0200

    suricata: separate keyword and app layer listing code
    
    The list-keyword and app-layer listing code was spread over all the
    init code. This patch introduces a separate file to store non standard
    running mode like these ones.

commit 135ef0186bb035aa1b377e06f92ef311014fc599
Author: Eric Leblond <eric at regit.org>
Date:   Mon Apr 8 12:00:32 2013 +0200

    runmodes: fix comment

-----------------------------------------------------------------------

Summary of changes:
 src/Makefile.am                                   |    3 +
 src/alert-pcapinfo.c                              |    3 +-
 src/alert-unified2-alert.c                        |    3 +-
 src/counters.c                                    |    3 +-
 src/detect-engine-analyzer.c                      |    6 +-
 src/log-filestore.c                               |    3 +-
 src/log-pcap.c                                    |    6 +-
 src/log-tlslog.c                                  |    3 +-
 src/runmode-unittests.c                           |  284 +++++++++
 src/{detect-distance.h => runmode-unittests.h}    |   16 +-
 src/runmodes.c                                    |    2 +-
 src/source-af-packet.c                            |    3 +
 src/suricata-common.h                             |    1 +
 src/suricata.c                                    |  652 ++++++++-------------
 src/util-conf.c                                   |   65 ++
 src/{detect-l3proto.h => util-conf.h}             |   15 +-
 src/util-debug.c                                  |    3 +-
 src/util-logopenfile.c                            |    3 +-
 src/util-profiling-rules.c                        |    3 +-
 src/util-profiling.c                              |    9 +-
 src/{detect-engine-dns.h => util-running-modes.c} |   35 +-
 src/{defrag-timeout.h => util-running-modes.h}    |   20 +-
 22 files changed, 675 insertions(+), 466 deletions(-)
 create mode 100644 src/runmode-unittests.c
 copy src/{detect-distance.h => runmode-unittests.h} (70%)
 create mode 100644 src/util-conf.c
 copy src/{detect-l3proto.h => util-conf.h} (73%)
 copy src/{detect-engine-dns.h => util-running-modes.c} (54%)
 copy src/{defrag-timeout.h => util-running-modes.h} (66%)


hooks/post-receive
-- 
OISF


More information about the Oisf-devel mailing list