Fix for bug 924. Adding preference whether to check the DVMRP V3 Major/Minor version.
[obnox/wireshark/wip.git] / capture_sync.h
index 2e0858883911ed48459827bf137dc473c498e29a..b7e515ad37bbef66ac01a996836eba84515b2a7d 100644 (file)
 #define __CAPTURE_SYNC_H__
 
 
-/* Size of buffer to hold decimal representation of
-   signed/unsigned 64-bit int */
-#define SP_DECISIZE 20
-
-/*
- * Indications sent out on the sync pipe (from child to parent).
- */
-#define SP_FILE         'F'     /* the name of the recently opened file */
-#define SP_ERROR_MSG    'E'     /* error message */
-#define SP_PACKET_COUNT 'P'     /* count of packets captured since last message */
-#define SP_DROPS        'D'     /* count of packets dropped in capture */
-/*
- * Win32 only: Indications sent out on the signal pipe (from parent to child)
- * (UNIX-like sends signals for this)
- */
-#define SP_QUIT         'Q'     /* "gracefully" capture quit message (SIGUSR1) */
-
-
-
 /** 
  * Start a new capture session.
  *  Create a capture child which is doing the real capture work.
@@ -76,24 +57,6 @@ sync_pipe_stop(capture_options *capture_opts);
 extern void
 sync_pipe_kill(capture_options *capture_opts);
 
-
-/** the child has opened a new capture file, notify the parent */
-extern void
-sync_pipe_filename_to_parent(const char *filename);
-
-/** the child captured some new packets, notify the parent */
-extern void
-sync_pipe_packet_count_to_parent(int packet_count);
-
-/** the child stopped capturing, notify the parent */
-extern void
-sync_pipe_drops_to_parent(int drops);
-
-/** the child encountered an error, notify the parent */
-extern void 
-sync_pipe_errmsg_to_parent(const char *errmsg);
-
-
 /** does the parent signalled the child to stop */
 #ifdef _WIN32
 extern gboolean