Some stuff, like libdencode, needs a wiretap routine that allows

them to simply read through the capture file ...

svn path=/trunk/; revision=1819
This commit is contained in:
Richard Sharpe 2000-04-08 00:33:04 +00:00
parent 068a228486
commit 140f531ea4
1 changed files with 6 additions and 1 deletions

View File

@ -1,6 +1,6 @@
/* wtap.c
*
* $Id: wtap.c,v 1.38 2000/03/22 07:06:55 guy Exp $
* $Id: wtap.c,v 1.39 2000/04/08 00:33:04 sharpe Exp $
*
* Wiretap Library
* Copyright (c) 1998 by Gilbert Ramirez <gram@xiexie.org>
@ -202,6 +202,11 @@ void wtap_close(wtap *wth)
g_free(wth);
}
int wtap_read(wtap *wth, int *err)
{
return wth -> subtype_read(wth, err);
}
int wtap_loop(wtap *wth, int count, wtap_handler callback, u_char* user,
int *err)
{