[Oisf-devel] [COMMIT] OISF branch, master, updated. suricata-2.0beta1-76-g38aaae1

noreply at openinfosecfoundation.org noreply at openinfosecfoundation.org
Thu Aug 29 07:35:48 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  38aaae1fd72e3e2bc6bfa9cc16972bf7be98c965 (commit)
       via  189327981abbab9012fedee265a9edaadbed17f7 (commit)
       via  cd3e32ce19e67615ea43c20020d65071a21b7011 (commit)
       via  c5bd04f102d3e135d0fcc5ec211b44a745cde02b (commit)
      from  d292f1a529f6c238a8f9b576a5d2bc99ccb3dabf (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 38aaae1fd72e3e2bc6bfa9cc16972bf7be98c965
Author: Victor Julien <victor at inliniac.net>
Date:   Wed Aug 28 20:22:09 2013 +0200

    IsRuleReloadSet() shouldn't return an uninitialized value

commit 189327981abbab9012fedee265a9edaadbed17f7
Author: Eric Leblond <eric at regit.org>
Date:   Tue Aug 27 10:10:25 2013 +0200

    unittests: fix stream-tcp.c
    
    Lock and recycle fixes for stream-tcp.c

commit cd3e32ce19e67615ea43c20020d65071a21b7011
Author: Eric Leblond <eric at regit.org>
Date:   Tue Aug 27 09:09:11 2013 +0200

    unittests: some functions needs a flow lock.
    
    In debug validation mode, it is required to call application layer
    parsing and other functions with a lock on flow. This patch updates
    the code to do so.

commit c5bd04f102d3e135d0fcc5ec211b44a745cde02b
Author: Eric Leblond <eric at regit.org>
Date:   Tue Aug 27 08:52:57 2013 +0200

    unittest: recycle packet before exit
    
    To avoid an issue with flow validation, we need to recycle the packet
    before cleaning the flow.

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

Summary of changes:
 src/alert-unified2-alert.c        |  143 +++++++++++++-----------
 src/app-layer-dcerpc-udp.c        |    3 +
 src/app-layer-dcerpc.c            |  117 +++++++++++++++++++
 src/app-layer-detect-proto.c      |   15 +++
 src/app-layer-ftp.c               |   24 ++++
 src/app-layer-htp-file.c          |  126 ++++++++++++++++++++
 src/app-layer-htp.c               |   72 ++++++++++++
 src/app-layer-parser.c            |    6 +
 src/app-layer-smb.c               |   48 ++++++++
 src/app-layer-smb2.c              |    3 +
 src/app-layer-smtp.c              |  231 +++++++++++++++++++++++++++++++++++++
 src/app-layer-ssh.c               |   90 ++++++++++++++
 src/app-layer-ssl.c               |  132 +++++++++++++++++++++
 src/decode-icmpv6.c               |   43 +++++--
 src/decode-ipv4.c                 |   12 +-
 src/decode-ipv6.c                 |   15 ++-
 src/decode-raw.c                  |   12 ++-
 src/decode-tcp.c                  |   15 ++-
 src/decode-vlan.c                 |   22 +++-
 src/detect-content.c              |    4 +
 src/detect-csum.c                 |    5 +
 src/detect-dce-iface.c            |   39 ++++++
 src/detect-dce-opnum.c            |   12 ++
 src/detect-dce-stub-data.c        |   54 +++++++++
 src/detect-dns-query.c            |   45 +++++++
 src/detect-dsize.c                |    5 +
 src/detect-engine-dcepayload.c    |   33 ++++++
 src/detect-engine-hcbd.c          |  159 +++++++++++++++++++++++++
 src/detect-engine-hcd.c           |   51 ++++++++
 src/detect-engine-hhd.c           |  129 +++++++++++++++++++++
 src/detect-engine-hhhd.c          |   75 ++++++++++++
 src/detect-engine-hmd.c           |   51 ++++++++
 src/detect-engine-hrhd.c          |  120 +++++++++++++++++++
 src/detect-engine-hrhhd.c         |   75 ++++++++++++
 src/detect-engine-hrud.c          |  147 +++++++++++++++++++++++
 src/detect-engine-hsbd.c          |  129 +++++++++++++++++++++
 src/detect-engine-hscd.c          |   93 +++++++++++++++
 src/detect-engine-hsmd.c          |   93 +++++++++++++++
 src/detect-engine-hua.c           |   51 ++++++++
 src/detect-engine-port.c          |    5 +
 src/detect-engine-state.c         |   66 +++++++++++
 src/detect-engine-uri.c           |  162 ++++++++++++++++++++++++++
 src/detect-flowint.c              |    8 ++
 src/detect-fragbits.c             |    9 ++-
 src/detect-ftpbounce.c            |   13 ++
 src/detect-http-client-body.c     |   79 +++++++++++++
 src/detect-http-cookie.c          |   33 ++++++
 src/detect-http-header.c          |   36 ++++++
 src/detect-http-hh.c              |   55 +++++++++
 src/detect-http-hrh.c             |   60 ++++++++++
 src/detect-http-method.c          |   12 ++
 src/detect-http-raw-header.c      |   36 ++++++
 src/detect-http-server-body.c     |  157 +++++++++++++++++++++++++
 src/detect-http-stat-code.c       |   16 +++
 src/detect-http-stat-msg.c        |   12 ++
 src/detect-http-ua.c              |   54 +++++++++
 src/detect-luajit.c               |   24 ++++
 src/detect-parse.c                |   12 ++-
 src/detect-pcre.c                 |   92 +++++++++++++++
 src/detect-replace.c              |    5 +
 src/detect-ssh-proto-version.c    |   17 +++
 src/detect-ssh-software-version.c |   18 +++
 src/detect-ssl-state.c            |   15 +++
 src/detect-ssl-version.c          |   18 +++
 src/detect-tls-version.c          |   18 +++
 src/detect-uricontent.c           |   26 ++++
 src/detect-urilen.c               |    3 +
 src/detect.c                      |   62 +++++++++-
 src/stream-tcp-reassemble.c       |   41 +++++++
 src/stream-tcp.c                  |   72 +++++++++++-
 src/suricata.c                    |    2 +-
 71 files changed, 3626 insertions(+), 111 deletions(-)


hooks/post-receive
-- 
OISF


More information about the Oisf-devel mailing list