aboutsummaryrefslogtreecommitdiffstats
path: root/gtk/rtp_analysis.c
diff options
context:
space:
mode:
authorUlf Lamping <ulf.lamping@web.de>2008-04-13 03:32:24 +0000
committerUlf Lamping <ulf.lamping@web.de>2008-04-13 03:32:24 +0000
commit644a474c95cbfc18200e89cff906cd5fad962038 (patch)
treea6bb135cc85bec3f3c15a7bb5ea4d93d38975123 /gtk/rtp_analysis.c
parent8e3e8b588f6a729dae0fa4d0792cf8ed1516eb7e (diff)
sort #includes by directories
svn path=/trunk/; revision=24969
Diffstat (limited to 'gtk/rtp_analysis.c')
-rw-r--r--gtk/rtp_analysis.c71
1 files changed, 30 insertions, 41 deletions
diff --git a/gtk/rtp_analysis.c b/gtk/rtp_analysis.c
index fe2ed1ba03..16c2258200 100644
--- a/gtk/rtp_analysis.c
+++ b/gtk/rtp_analysis.c
@@ -36,65 +36,54 @@
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
+#include <math.h>
+#include <string.h>
+#include <locale.h>
-/*do not define this symbol. will be added soon*/
-/*#define USE_CONVERSATION_GRAPH 1*/
+#ifdef HAVE_UNISTD_H
+#include <unistd.h>
+#endif
-#ifdef USE_CONVERSATION_GRAPH
-#include "../graph/graph.h"
+#ifdef HAVE_FCNTL_H
+#include <fcntl.h>
#endif
+#include <gtk/gtk.h>
+
#include <epan/epan_dissect.h>
#include <epan/filesystem.h>
#include <epan/pint.h>
-
-#include "util.h"
#include <epan/tap.h>
-#include "register.h"
#include <epan/dissectors/packet-rtp.h>
-#include "g711.h"
#include <epan/rtp_pt.h>
#include <epan/addr_resolv.h>
-
-/* in /gtk ... */
-#include <gtk/gtk.h>
-#include "gtkglobals.h"
-
#include <epan/stat_cmd_args.h>
-#include "dlg_utils.h"
-#include "file_dlg.h"
-#include "gui_utils.h"
-#include "alert_box.h"
-#include "simple_dialog.h"
+#include <epan/strutil.h>
+
+#include "../util.h"
+#include "../register.h"
+#include "../g711.h"
+#include "../alert_box.h"
+#include "../simple_dialog.h"
#include "../stat_menu.h"
-#include "gui_stat_menu.h"
-#include "main.h"
-#include "progress_dlg.h"
+#include "../progress_dlg.h"
#include "../color.h"
+#include "../tempfile.h"
+#include "wiretap/file_util.h"
+
+#include "gtk/gtkglobals.h"
+#include "gtk/dlg_utils.h"
+#include "gtk/file_dlg.h"
+#include "gtk/gui_utils.h"
+#include "gtk/gui_stat_menu.h"
+#include "gtk/main.h"
+#include "gtk/rtp_analysis.h"
+#include "gtk/rtp_stream.h"
+#include "gtk/rtp_stream_dlg.h"
#include "image/clist_ascend.xpm"
#include "image/clist_descend.xpm"
-#include <math.h>
-#include <string.h>
-#include <locale.h>
-#include <epan/strutil.h>
-
-#ifdef HAVE_UNISTD_H
-#include <unistd.h>
-#endif
-
-#ifdef HAVE_FCNTL_H
-#include <fcntl.h>
-#endif
-
-#include "file_util.h"
-#include "tempfile.h"
-
-#include "rtp_analysis.h"
-#include "rtp_stream.h"
-#include "rtp_stream_dlg.h"
-
/****************************************************************************/