wireshark/gtk/Makefile.common

195 lines
4.2 KiB
Makefile
Raw Normal View History

# Makefile.common
# Contains the stuff from Makefile.am and Makefile.nmake that is
# a) common to both files and
# b) portable between both files
#
# $Id$
#
# Wireshark - Network traffic analyzer
# By Gerald Combs <gerald@wireshark.org>
# Copyright 1998 Gerald Combs
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
# Generated header files that we want in the distribution.
# (None, so far.)
GENERATED_HEADER_FILES =
# Generated C source files that we want in the distribution.
GENERATED_C_FILES = \
wireshark-tap-register.c
# All the generated files we want in the distribution.
GENERATED_FILES = $(GENERATED_HEADER_FILES) $(GENERATED_C_FILES)
#
# ethclist.obj is not in here because it is currently gtk+-1.2-only
# code, while the DLL for GTK+ on Windows is gtk+-1.3 or gtk+-2.x.
#
WIRESHARK_GTK_SRC = \
about_dlg.c \
airpcap_dlg.c \
airpcap_gui_utils.c \
capture_dlg.c \
capture_file_dlg.c \
capture_if_dlg.c \
capture_if_details_dlg.c \
capture_info_dlg.c \
capture_prefs.c \
cfilter_combo_utils.c \
color_dlg.c \
color_edit_dlg.c \
color_utils.c \
colors.c \
column_prefs.c \
conversations_table.c \
decode_as_ber.c \
decode_as_dlg.c \
decode_as_dcerpc.c \
dfilter_expr_dlg.c \
dlg_utils.c \
drag_and_drop.c \
wireshark-tap-register.c \
expert_comp_table.c \
export_object.c \
export_object_http.c \
file_dlg.c \
fileset_dlg.c \
filter_dlg.c \
find_dlg.c \
firewall_dlg.c \
follow_ssl.c \
follow_stream.c \
follow_tcp.c \
font_utils.c \
goto_dlg.c \
graph_analysis.c \
gtkvumeter.c \
gui_stat_util.c \
gui_prefs.c \
gui_utils.c \
help_dlg.c \
hostlist_table.c \
layout_prefs.c \
macros_dlg.c \
main.c \
menu.c \
nameres_prefs.c \
packet_history.c \
packet_list.c \
packet_win.c \
pixmap_save.c \
plugins_dlg.c \
prefs_dlg.c \
print_dlg.c \
print_prefs.c \
progress_dlg.c \
proto_dlg.c \
proto_draw.c \
proto_hier_stats_dlg.c \
range_utils.c \
recent.c \
rtp_player.c \
rtp_stream.c \
From Miha Jemec: With the new feature we can: 1. Measure how big the bursts are for a video streams (it uses sliding window algorithm) 2. Measure how big the output buffer should be that no packet drop will occur (it uses Leaky bucket algorithm) 3. Detect if we have loses inside the MPEG2 video stream (if there are already MPEG2 packets missing) - this part of code is not added yet, see Limitations The addition is called Multicast streams and works as follows: - it uses the TAP system - the main "stream" logic is taken from rtp_strems.* files - the TAP system checks for UDP packets where the destination MAC address starts with "01:00:5E" (ethernet multicast address) - it creates an entry for every new multicast stream - based on sliding window and leaky bucket algorithm it calculates for every stream average BW, max BW, burst size, max buffer needed, some alarms if the limits are exceeded,... - the same calculation is done for all streams together - inside the window dialog you can specify the burst interval, the alarm limits and output speeds To do & limitations: - Currently the analysis can be done only for multicast streams, it means that VoD (Video on demand) or PayTV streams, which are normally unicast can not be analysed. - since the MPEG2 is patended I don't know if decoding of MPEG2 packets is allowed? Can we look inside this packets and calculate packets drops based on some counter information inside the payload? Can someone please answer this question? If we can do this, I will post this part of code too. - some more flexibility will be added svn path=/trunk/; revision=17980
2006-04-24 19:10:36 +00:00
mcast_stream.c \
sctp_stat.c \
sctp_graph_dlg.c \
sctp_byte_graph_dlg.c \
sctp_error_dlg.c \
service_response_time_table.c \
simple_dialog.c \
stream_prefs.c \
summary_dlg.c \
supported_protos_dlg.c \
tap_dfilter_dlg.c \
text_page.c \
toolbar.c \
u3.c \
uat_gui.c \
voip_calls.c \
webbrowser.c
WIRESHARK_TAP_SRC = \
afp_stat.c \
ansi_a_stat.c \
ansi_map_stat.c \
bootp_stat.c \
camel_counter.c \
camel_srt.c \
conversations_eth.c \
conversations_fc.c \
conversations_fddi.c \
conversations_ip.c \
conversations_ipx.c \
conversations_jxta.c \
conversations_sctp.c \
conversations_tcpip.c \
conversations_tr.c \
conversations_udpip.c \
conversations_usb.c \
conversations_wlan.c \
conversations_ncp.c \
conversations_rsvp.c \
dcerpc_stat.c \
expert_comp_dlg.c \
expert_dlg.c \
fc_stat.c \
flow_graph.c \
funnel_stat.c \
gsm_a_stat.c \
gsm_map_stat.c \
gsm_map_summary.c \
h225_counter.c \
h225_ras_srt.c \
hostlist_eth.c \
hostlist_fc.c \
hostlist_fddi.c \
hostlist_ip.c \
hostlist_ipx.c \
hostlist_jxta.c \
hostlist_ncp.c \
hostlist_tcpip.c \
hostlist_tr.c \
hostlist_udpip.c \
hostlist_usb.c \
hostlist_wlan.c \
hostlist_rsvp.c \
io_stat.c \
ldap_stat.c \
mgcp_stat.c \
mtp3_stat.c \
mtp3_summary.c \
ncp_stat.c \
radius_stat.c \
rpc_progs.c \
rpc_stat.c \
rtp_analysis.c \
rtp_stream_dlg.c \
From Miha Jemec: With the new feature we can: 1. Measure how big the bursts are for a video streams (it uses sliding window algorithm) 2. Measure how big the output buffer should be that no packet drop will occur (it uses Leaky bucket algorithm) 3. Detect if we have loses inside the MPEG2 video stream (if there are already MPEG2 packets missing) - this part of code is not added yet, see Limitations The addition is called Multicast streams and works as follows: - it uses the TAP system - the main "stream" logic is taken from rtp_strems.* files - the TAP system checks for UDP packets where the destination MAC address starts with "01:00:5E" (ethernet multicast address) - it creates an entry for every new multicast stream - based on sliding window and leaky bucket algorithm it calculates for every stream average BW, max BW, burst size, max buffer needed, some alarms if the limits are exceeded,... - the same calculation is done for all streams together - inside the window dialog you can specify the burst interval, the alarm limits and output speeds To do & limitations: - Currently the analysis can be done only for multicast streams, it means that VoD (Video on demand) or PayTV streams, which are normally unicast can not be analysed. - since the MPEG2 is patended I don't know if decoding of MPEG2 packets is allowed? Can we look inside this packets and calculate packets drops based on some counter information inside the payload? Can someone please answer this question? If we can do this, I will post this part of code too. - some more flexibility will be added svn path=/trunk/; revision=17980
2006-04-24 19:10:36 +00:00
mcast_stream_dlg.c \
stats_tree_stat.c \
scsi_stat.c \
sctp_assoc_analyse.c \
sctp_chunk_stat_dlg.c \
sctp_chunk_stat.c \
sctp_stat_dlg.c \
sip_stat.c \
smb_stat.c \
smb2_stat.c \
t38_analysis.c \
tcp_graph.c \
voip_calls_dlg.c \
wsp_stat.c