From Thomas ERSFELD (GSoC13) Prepare inclusion of Follow (TCP/UDP/SSL) feature in Qtshark

svn path=/trunk/; revision=50819
This commit is contained in:
Alexis La Goutte 2013-07-23 08:56:30 +00:00
parent 6cff72548d
commit ad78694e76
2 changed files with 16 additions and 0 deletions

View File

@ -24,6 +24,10 @@
#ifndef __PACKET_TCP_H__
#define __PACKET_TCP_H__
#ifdef __cplusplus
extern "C" {
#endif /* __cplusplus */
#include "ws_symbol_export.h"
#ifndef __CONVERSATION_H__
@ -287,4 +291,8 @@ extern gboolean decode_tcp_ports(tvbuff_t *, int, packet_info *, proto_tree *, i
*/
extern void add_tcp_process_info(guint32 frame_num, address *local_addr, address *remote_addr, guint16 local_port, guint16 remote_port, guint32 uid, guint32 pid, gchar *username, gchar *command);
#ifdef __cplusplus
}
#endif /* __cplusplus */
#endif

View File

@ -27,6 +27,10 @@
#ifndef __FOLLOW_H__
#define __FOLLOW_H__
#ifdef __cplusplus
extern "C" {
#endif /* __cplusplus */
#include <epan/packet.h>
#include "ws_symbol_export.h"
@ -63,4 +67,8 @@ typedef struct {
WS_DLL_PUBLIC
void follow_stats(follow_stats_t* stats);
#ifdef __cplusplus
}
#endif /* __cplusplus */
#endif