Rename TunnelHandler.{cc,h} to Tunnels.{cc,h}.

This commit is contained in:
Jon Siwek 2012-04-23 13:24:02 -05:00
parent b51dd191d7
commit 5ce00bda8a
6 changed files with 7 additions and 7 deletions

View file

@ -394,7 +394,7 @@ set(bro_SRCS
Timer.cc Timer.cc
Traverse.cc Traverse.cc
Trigger.cc Trigger.cc
TunnelHandler.cc Tunnels.cc
Type.cc Type.cc
UDP.cc UDP.cc
Val.cc Val.cc

View file

@ -13,7 +13,7 @@
#include "Timer.h" #include "Timer.h"
#include "PIA.h" #include "PIA.h"
#include "binpac.h" #include "binpac.h"
#include "TunnelHandler.h" #include "Tunnels.h"
void ConnectionTimer::Init(Connection* arg_conn, timer_func arg_timer, void ConnectionTimer::Init(Connection* arg_conn, timer_func arg_timer,
int arg_do_expire) int arg_do_expire)

View file

@ -13,7 +13,7 @@
#include "RuleMatcher.h" #include "RuleMatcher.h"
#include "AnalyzerTags.h" #include "AnalyzerTags.h"
#include "IPAddr.h" #include "IPAddr.h"
#include "TunnelHandler.h" #include "Tunnels.h"
class Connection; class Connection;
class ConnectionTimer; class ConnectionTimer;

View file

@ -30,7 +30,7 @@
#include "DPM.h" #include "DPM.h"
#include "PacketSort.h" #include "PacketSort.h"
#include "TunnelHandler.h" #include "Tunnels.h"
// These represent NetBIOS services on ephemeral ports. They're numbered // These represent NetBIOS services on ephemeral ports. They're numbered
// so that we can use a single int to hold either an actual TCP/UDP server // so that we can use a single int to hold either an actual TCP/UDP server

View file

@ -1,6 +1,6 @@
// See the file "COPYING" in the main distribution directory for copyright. // See the file "COPYING" in the main distribution directory for copyright.
#include "TunnelHandler.h" #include "Tunnels.h"
RecordVal* EncapsulatingConn::GetRecordVal() const RecordVal* EncapsulatingConn::GetRecordVal() const
{ {

View file

@ -1,7 +1,7 @@
// See the file "COPYING" in the main distribution directory for copyright. // See the file "COPYING" in the main distribution directory for copyright.
#ifndef tunnelhandler_h #ifndef TUNNELS_H
#define tunnelhandler_h #define TUNNELS_H
#include "config.h" #include "config.h"
#include "NetVar.h" #include "NetVar.h"