diff options
author | Anders Broman <anders.broman@ericsson.com> | 2006-10-04 07:18:58 +0000 |
---|---|---|
committer | Anders Broman <anders.broman@ericsson.com> | 2006-10-04 07:18:58 +0000 |
commit | 7ecb3721a35e151b8d4d2c3e80feed27bfd9cc16 (patch) | |
tree | 16c7f06c6061aaa9bd469d05da6593967b4a4dfb /epan/camel-persistentdata.c | |
parent | 4d1da73c6f210cd8e5d47ebe7798e1a10688c702 (diff) | |
download | wireshark-7ecb3721a35e151b8d4d2c3e80feed27bfd9cc16.tar.gz wireshark-7ecb3721a35e151b8d4d2c3e80feed27bfd9cc16.tar.bz2 wireshark-7ecb3721a35e151b8d4d2c3e80feed27bfd9cc16.zip |
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
Diffstat (limited to 'epan/camel-persistentdata.c')
-rw-r--r-- | epan/camel-persistentdata.c | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/epan/camel-persistentdata.c b/epan/camel-persistentdata.c index ff3c06be7b..34634c8cea 100644 --- a/epan/camel-persistentdata.c +++ b/epan/camel-persistentdata.c @@ -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, |