Add duplicate value_string in check filter
[metze/wireshark/wip.git] / sync_pipe.h
index bdc8ce5c74dd33fe0cd1263c41d0e384df3d396c..05f9ff15e46d9d73c7e1e4ef1360d4d232eca3d1 100644 (file)
@@ -2,25 +2,11 @@
  * Low-level synchronization pipe routines for use by Wireshark/TShark
  * and dumpcap
  *
- * $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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+ * SPDX-License-Identifier: GPL-2.0+
  */
 
 
@@ -40,7 +26,7 @@
  * Expression, as the error message for an incorrect filter expression
  * is a bit larger than the filter expression.
  */
-#define SP_MAX_MSG_LEN 4096
+#define SP_MAX_MSG_LEN  4096
 
 
 /* Size of buffer to hold decimal representation of
@@ -60,6 +46,7 @@
 #define SP_PACKET_COUNT 'P'     /* count of packets captured since last message */
 #define SP_DROPS        'D'     /* count of packets dropped in capture */
 #define SP_SUCCESS      'S'     /* success indication, no extra data */
+#define SP_TOOLBAR_CTRL 'T'     /* interface toolbar control packet */
 /*
  * Win32 only: Indications sent out on the signal pipe (from parent to child)
  * (UNIX-like sends signals for this)
@@ -89,3 +76,16 @@ sync_pipe_errmsg_to_parent(int pipe_fd, const char *error_msg,
 #endif
 
 #endif /* sync_pipe.h */
+
+/*
+ * Editor modelines  -  http://www.wireshark.org/tools/modelines.html
+ *
+ * Local variables:
+ * c-basic-offset: 4
+ * tab-width: 8
+ * indent-tabs-mode: nil
+ * End:
+ *
+ * vi: set shiftwidth=4 tabstop=8 expandtab:
+ * :indentSize=4:tabSize=8:noTabs=true:
+ */