Hi,
After successfully executing make and make
install, when we tried to run the wireshark (using ./ wireshark)
We are getting the following error:
undefined symbol:
dissect_eci
The code is as
follows:
Forward declarations
static int dissect_eci(tvbuff_t
*,int ,proto_tree *);
static int dissect_cpn(tvbuff_t
*,int ,proto_tree *);
static int dissect_gcr(tvbuff_t
*,int ,proto_tree *);
…………………..
…………..
…………..
Parameter definitions:
# define ECI 12
# define EIT 13
And so on
…
………….
……………..
……………..
case ECI :
dissect_eci( tvb,
offset, tree);
break;
………………….
……………..
………………..
dissect_eci(tvbuff_t
*tvb,int offset,proto_tree *xyz_tree)
{
…………
}
Your help would be
appreciated .
Regards,
Tarani