forked from snort3/snort3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathudp_module.cc
83 lines (66 loc) · 2.35 KB
/
udp_module.cc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
//--------------------------------------------------------------------------
// Copyright (C) 2014-2024 Cisco and/or its affiliates. All rights reserved.
//
// This program is free software; you can redistribute it and/or modify it
// under the terms of the GNU General Public License Version 2 as published
// by the Free Software Foundation. You may not use, modify or distribute
// this program under any other version of the GNU General Public License.
//
// This program is distributed in the hope that it will be useful, but
// WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
// General Public License for more details.
//
// You should have received a copy of the GNU General Public License along
// with this program; if not, write to the Free Software Foundation, Inc.,
// 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
//--------------------------------------------------------------------------
// udp_module.cc author Russ Combs <[email protected]>
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include "udp_module.h"
#include "stream_udp.h"
using namespace snort;
using namespace std;
//-------------------------------------------------------------------------
// stream_udp module
//-------------------------------------------------------------------------
static const Parameter s_params[] =
{
{ "session_timeout", Parameter::PT_INT, "1:max31", "30",
"session tracking timeout" },
{ nullptr, Parameter::PT_MAX, nullptr, nullptr, nullptr }
};
StreamUdpModule::StreamUdpModule() : Module(MOD_NAME, MOD_HELP, s_params)
{ }
ProfileStats* StreamUdpModule::get_profile() const
{
return &udp_perf_stats;
}
StreamUdpConfig* StreamUdpModule::get_data()
{
StreamUdpConfig* temp = config;
config = nullptr;
return temp;
}
bool StreamUdpModule::set(const char*, Value& v, SnortConfig*)
{
assert(v.is("session_timeout"));
config->session_timeout = v.get_uint32();
return true;
}
bool StreamUdpModule::begin(const char*, int, SnortConfig*)
{
if ( !config )
config = new StreamUdpConfig;
return true;
}
bool StreamUdpModule::end(const char*, int, SnortConfig*)
{
return true;
}
const PegInfo* StreamUdpModule::get_pegs() const
{ return udp_pegs; }
PegCount* StreamUdpModule::get_counts() const
{ return (PegCount*)&udpStats; }