~ubuntu-branches/ubuntu/utopic/suricata/utopic

« back to all changes in this revision

Viewing changes to src/stream.h

  • Committer: Package Import Robot
  • Author(s): Pierre Chifflier
  • Date: 2012-07-22 22:27:36 UTC
  • mfrom: (1.1.13)
  • Revision ID: package-import@ubuntu.com-20120722222736-s2bcw3ruzenagjam
Tags: 1.3-1
* Imported Upstream version 1.3
* Add build-dependency on libnss3-dev and libnspr4-dev
* Bump Standards Version to 3.9.3

Show diffs side-by-side

added added

removed removed

Lines of Context:
45
45
    union {
46
46
        /* case !STREAM_EOF && !STREAM_GAP */
47
47
        struct {
 
48
            uint32_t seq;               /**< sequence number */
 
49
            uint32_t data_len;          /**< length of the data */
48
50
            uint8_t data[MSG_DATA_SIZE];/**< reassembled data */
49
 
            uint32_t data_len;          /**< length of the data */
50
 
            uint32_t seq;               /**< sequence number */
51
51
        } data;
52
52
        /* case STREAM_GAP */
53
53
        struct {