File: fireflierstrings.h

package info (click to toggle)
fireflier 1.1.6-3etch1
  • links: PTS
  • area: main
  • in suites: etch
  • size: 3,348 kB
  • ctags: 1,167
  • sloc: sh: 9,023; cpp: 8,370; makefile: 437; ansic: 300
file content (87 lines) | stat: -rw-r--r-- 2,803 bytes parent folder | download | duplicates (3)
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
84
85
86
87
#ifndef _FIREFLIERSTRINGS_H_
#define _FIREFLIERSTRINGS_H_

#include "config.h"
#include <glibmm/ustring.h>

using Glib::ustring;


const ustring strAppName		= PACKAGE;
const ustring strAppVersion		= VERSION;
const ustring strAppTitle		= PACKAGE;
const ustring strConnecting		= "connecting to fireflier-server";
const ustring strConnection		= "connected to fireflier-server";
const ustring strNoConnection	= "no connection to fireflier-server";
const ustring strWait4Auth		= "waiting for authentication";
const ustring strNotAvailable	= "not available";
const ustring strResolving		= "resolving...";
const ustring strNotResolvable	= "not resolvable";
const ustring strNoPacketAvail	= "no Packet available";
const ustring strTimeoutForever	= "never";
const ustring strTimeout01		= "5 minutes";
const ustring strTimeout02		= "1 hour";
const ustring strTimeout03		= "12 hours";
const ustring strTimeout04		= "1 day";
const ustring strChainInput		= "INPUT";
const ustring strChainForward	= "FORWARD";
const ustring strChainOutput	= "OUTPUT";
const ustring ICMP_TYPES[] =
{
	  "ECHO_REPLY"
	, "UNKNOWN"
	, "UNKNOWN"
	, "DEST_UNREACH"
	, "SOURCE_QUENCH"
	, "REDIRECT"
	, "UNKNOWN"
	, "UNKNOWN"
	, "ECHO"
	, "UNKNOWN"
	, "UNKNOWN"
	, "TIME_EXCEEDED"
	, "PARAMETERPROB"
	, "TIMESTAMP"
	, "TIMESTAMP_REPLY"
	, "INFO_REQUEST"
	, "INFO_REPLY"
	, "ADDRESS"
	, "ADDRESS_REPLY"
};

const ustring strThisPacket		= "_this packet";
const ustring strQueuedpackets	= "_queued packets";
const ustring strCreateRule		= "_create rule from this packet";
const ustring strAccept			= "_allow";
const ustring strDrop			= "_deny";
const ustring strChain			= "Chain: ";
const ustring strIPSrc			= "_IP: ";
const ustring strIPDst			= "I_P: ";
const ustring strHostSrc		= "Hostname: ";
const ustring strHostDst		= "Hostname: ";
const ustring strPortSrc		= "P_ort: ";
const ustring strPortDst		= "Po_rt: ";
const ustring strIFaceIn		= "I_nterface: ";
const ustring strIFaceOut		= "Interfac_e: ";
const ustring strProtocol		= "Protoco_l: ";
const ustring strTracking		= "Connection Trac_king";
const ustring strProgramName	= "Pro_gram: ";
const ustring strMAC			= "MAC: ";
const ustring strLen			= "Length: ";
const ustring strTCPFlags		= "TCP Flags: ";
const ustring strICMPType		= "ICMP Type: ";
const ustring strTimestamp		= "Timestamp: ";
const ustring strProtocol_ICMP	= "ICMP";
const ustring strProtocol_TCP	= "TCP";
const ustring strProtocol_UDP	= "UDP";
const ustring strProtocol_GRE	= "GRE";
const ustring strProtocol_UNKNOWN="UNKNOWN";
const ustring strTCPFlag_FIN	= "FIN ";
const ustring strTCPFlag_SYN	= "SYN ";
const ustring strTCPFlag_ACK	= "ACK ";
const ustring strTCPFlag_RST	= "RST ";
const ustring strLabelTimeout	= "Ti_meout of rule: ";

const ustring strToolTipTimeout	= "Time for which this rule is valid";

#endif