~ubuntu-branches/ubuntu/gutsy/wireshark/gutsy-security

« back to all changes in this revision

Viewing changes to wiretap/radcom.c

  • Committer: Bazaar Package Importer
  • Author(s): Frederic Peters
  • Date: 2007-04-01 08:58:40 UTC
  • mfrom: (1.1.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20070401085840-or3qhrpv8alt1bwg
Tags: 0.99.5-1
* New upstream release.
* debian/patches/09_idl2wrs.dpatch: updated to patch idl2wrs.sh.in.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/* radcom.c
2
2
 *
3
 
 * $Id: radcom.c 15534 2005-08-25 21:29:54Z ulfl $
 
3
 * $Id: radcom.c 19814 2006-11-05 22:46:44Z ulfl $
4
4
 *
5
5
 * Wiretap Library
6
6
 * Copyright (c) 1998 by Gilbert Ramirez <gram@alumni.rice.edu>
90
90
};
91
91
 
92
92
static gboolean radcom_read(wtap *wth, int *err, gchar **err_info,
93
 
        long *data_offset);
94
 
static gboolean radcom_seek_read(wtap *wth, long seek_off,
 
93
        gint64 *data_offset);
 
94
static gboolean radcom_seek_read(wtap *wth, gint64 seek_off,
95
95
        union wtap_pseudo_header *pseudo_header, guchar *pd, int length,
96
96
        int *err, gchar **err_info);
97
97
static int radcom_read_rec_header(FILE_T fh, struct radcomrec_hdr *hdr,
267
267
 
268
268
/* Read the next packet */
269
269
static gboolean radcom_read(wtap *wth, int *err, gchar **err_info _U_,
270
 
    long *data_offset)
 
270
    gint64 *data_offset)
271
271
{
272
272
        int     ret;
273
273
        struct radcomrec_hdr hdr;
373
373
}
374
374
 
375
375
static gboolean
376
 
radcom_seek_read(wtap *wth, long seek_off,
 
376
radcom_seek_read(wtap *wth, gint64 seek_off,
377
377
    union wtap_pseudo_header *pseudo_header, guchar *pd, int length,
378
378
    int *err, gchar **err_info _U_)
379
379
{