aboutsummaryrefslogtreecommitdiffstats
path: root/pcapio.h
diff options
context:
space:
mode:
authortuexen <tuexen@f5534014-38df-0310-8fa8-9805f1628bb7>2009-04-26 15:51:25 +0000
committertuexen <tuexen@f5534014-38df-0310-8fa8-9805f1628bb7>2009-04-26 15:51:25 +0000
commitd6fc28a0d1997fb5258d6ca48f66f734aa016854 (patch)
tree057f7caabc8decd89bba902c01517115a72fcb53 /pcapio.h
parentb6c86ee08e61b259df995cd3c7be5856b1ba98d6 (diff)
Make ringbuffer.[ch] file format agnostic.
Move write routines to dumpcap.c This is a preparation for pcapng support. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@28155 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'pcapio.h')
-rw-r--r--pcapio.h12
1 files changed, 8 insertions, 4 deletions
diff --git a/pcapio.h b/pcapio.h
index ae2d4e93c5..04cded1e58 100644
--- a/pcapio.h
+++ b/pcapio.h
@@ -25,11 +25,15 @@
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
-/* Returns a FILE * to write to on success, NULL on failure; sets "*err" to
- an error code, or 0 for a short write, on failure */
+/* Returns a FILE * to write to on success, NULL on failure */
extern FILE *
-libpcap_fdopen(int fd, int linktype, int snaplen, long *bytes_written,
- int *err);
+libpcap_fdopen(int fd, int *err);
+
+/* Write the file header to a dump file.
+ Returns TRUE on success, FALSE on failure.
+ Sets "*err" to an error code, or 0 for a short write, on failure*/
+extern gboolean
+libpcap_write_file_header(FILE *fp, int linktype, int snaplen, long *bytes_written, int *err);
/* Write a record for a packet to a dump file.
Returns TRUE on success, FALSE on failure. */