Got rid of some errors but 1 remains:

libui.lib(camel_srt.obj) : error LNK2001: unresolved external symbol _camelSRTt
pe_naming
wireshark.exe : fatal error LNK1120: 1 unresolved externals
NMAKE : fatal error U1077: 'link' : return code '0x460'
Stop.

svn path=/trunk/; revision=19424
This commit is contained in:
Anders Broman 2006-10-04 07:18:58 +00:00
parent 4d1da73c6f
commit 7ecb3721a3
3 changed files with 19 additions and 15 deletions

View File

@ -38,6 +38,19 @@
#include "epan/dissectors/packet-tcap.h"
#include "epan/dissectors/packet-mtp3.h"
const value_string camelSRTtype_naming[]= {
{ CAMELSRT_SESSION, "TCAP_Session" },
{ CAMELSRT_VOICE_INITIALDP, "InialDP/Continue" },
{ CAMELSRT_VOICE_ACR1, "Slice1_ACR/ACH" },
{ CAMELSRT_VOICE_ACR2, "Slice2_ACR/ACH" },
{ CAMELSRT_VOICE_ACR3, "Slice3_ACR/ACH" },
{ CAMELSRT_VOICE_DISC, "EvtRepBSCM/Release" },
{ CAMELSRT_SMS_INITIALDP, "InitialDP/ContinueSMS" },
{ CAMELSRT_GPRS_INITIALDP, "InitialDP/ContinueGPRS" },
{ CAMELSRT_GPRS_REPORT, "EvtRepGPRS/ContinueGPRS" },
{ 0,NULL}
};
static gint camelsrt_call_equal(gconstpointer k1, gconstpointer k2);
static guint camelsrt_call_hash(gconstpointer k);
static struct camelsrt_call_t * find_camelsrt_call(struct camelsrt_call_info_key_t * p_camelsrt_call_key,

View File

@ -48,18 +48,7 @@
#define CAMELSRT_SMS_INITIALDP 9
static const value_string camelSRTtype_naming[]= {
{ CAMELSRT_SESSION, "TCAP_Session" },
{ CAMELSRT_VOICE_INITIALDP, "InialDP/Continue" },
{ CAMELSRT_VOICE_ACR1, "Slice1_ACR/ACH" },
{ CAMELSRT_VOICE_ACR2, "Slice2_ACR/ACH" },
{ CAMELSRT_VOICE_ACR3, "Slice3_ACR/ACH" },
{ CAMELSRT_VOICE_DISC, "EvtRepBSCM/Release" },
{ CAMELSRT_SMS_INITIALDP, "InitialDP/ContinueSMS" },
{ CAMELSRT_GPRS_INITIALDP, "InitialDP/ContinueGPRS" },
{ CAMELSRT_GPRS_REPORT, "EvtRepGPRS/ContinueGPRS" },
{ 0,NULL}
};
extern const value_string camelSRTtype_naming[];
/* If we have a request message and its response,
(eg: ApplyCharging, ApplyChargingReport)

View File

@ -60,9 +60,11 @@ struct camelsrt_t {
nstime_t delta_time[NB_CAMELSRT_CATEGORY][NUM_RAS_STATS];
};
/* Check if we have to inhibit the display or not */
extern gboolean gcamel_StatSRT;
extern gboolean gtcap_StatSRT;
/* Check if we have to inhibit the display or not
* cannot be static because it's exported in libwireshark.def
*/
gboolean gcamel_StatSRT;
gboolean gtcap_StatSRT;
/* Reset the counter */
static void camelsrt_reset(void *phs)