| Commit message (Expand) | Author | Age | Files | Lines |
* | Use an enum for the open-routine return value, as per Evan Huus's suggestion. | Guy Harris | 2014-10-09 | 1 | -4/+4 |
* | No need for WTAP_ERR_CANT_READ. | Guy Harris | 2014-10-07 | 1 | -1/+0 |
* | Add some higher-level file-read APIs and use them. | Guy Harris | 2014-10-07 | 1 | -19/+11 |
* | Make the time stamp resolution per-packet. | Guy Harris | 2014-09-28 | 1 | -1/+1 |
* | Fix a record size check. | Guy Harris | 2014-09-25 | 1 | -7/+7 |
* | Fix whitespace/indentation to match editor modelines. | Bill Meier | 2014-08-05 | 1 | -68/+68 |
* | Rename buffer_ routines to ws_buffer_ to avoid name collisions. | Guy Harris | 2014-08-02 | 1 | -6/+6 |
* | Only one buffer.c, please. | Guy Harris | 2014-07-15 | 1 | -1/+1 |
* | Allow wtap_read() and wtap_seek_read() to return records other than packets. | Guy Harris | 2014-05-24 | 1 | -0/+3 |
* | Revert "Allow wtap_read() and wtap_seek_read() to return non-packet records." | Guy Harris | 2014-05-23 | 1 | -14/+11 |
* | Allow wtap_read() and wtap_seek_read() to return non-packet records. | Guy Harris | 2014-05-23 | 1 | -11/+14 |
* | Revert "Refactor Wiretap" | Guy Harris | 2014-05-09 | 1 | -41/+38 |
* | Refactor Wiretap | Michael Mann | 2014-05-09 | 1 | -38/+41 |
* | Hide unused variable. | Guy Harris | 2014-03-29 | 1 | -1/+4 |
* | Add a pcorey48tohll() macro, and use #defines for some offsets. | Guy Harris | 2014-03-29 | 1 | -26/+25 |
* | Add a #define for the stats block header length, and use it. | Guy Harris | 2014-03-16 | 1 | -14/+15 |
* | And another warning fix. | Guy Harris | 2014-03-16 | 1 | -1/+2 |
* | Squelch some warnings by narrowing or widening some variables. | Guy Harris | 2014-03-16 | 1 | -6/+9 |
* | Get rid of unused #defines and no-longer-used structures. | Guy Harris | 2014-03-16 | 1 | -56/+3 |
* | Reorganize the code. | Guy Harris | 2014-03-16 | 1 | -375/+448 |
* | Clean up the setting of the len and caplen fields. | Guy Harris | 2014-03-15 | 1 | -48/+66 |
* | Use constants instead of vwr->STATS_LEN in some cases. | Guy Harris | 2014-03-15 | 1 | -10/+8 |
* | Fix setting of STATS_LEN - it's what's in the file, not what we *generate*. | Guy Harris | 2014-03-15 | 1 | -2/+1 |
* | Clean up naming and get rid of unused and duplicate definitions. | Guy Harris | 2014-03-15 | 1 | -197/+104 |
* | Better document the offset of the MPDU in the packet data. | Guy Harris | 2014-03-15 | 1 | -9/+17 |
* | Add a #define for the record header length, and use it. | Guy Harris | 2014-03-15 | 1 | -6/+21 |
* | Some records have two statistics blocks; clarify that. | Guy Harris | 2014-03-15 | 1 | -4/+4 |
* | More use of vwr->STATS_LEN to clarify what code is doing. | Guy Harris | 2014-03-15 | 1 | -4/+9 |
* | Get rid of duplicate code. | Guy Harris | 2014-03-15 | 1 | -5/+0 |
* | Use vwr->STATS_LEN instead of numbers, and eliminate redundant checks. | Guy Harris | 2014-03-15 | 1 | -8/+2 |
* | len and caplen are derived independently, so set WTAP_HAS_CAP_LEN. | Guy Harris | 2014-03-14 | 1 | -3/+3 |
* | Remove all $Id$ from top of file | Alexis La Goutte | 2014-03-04 | 1 | -2/+0 |
* | Remove trailing whitespace | Bill Meier | 2014-02-25 | 1 | -1/+1 |
* | No seek-read routines use the length argument, so eliminate it from | Guy Harris | 2014-01-02 | 1 | -3/+2 |
* | Don't pass the wtap * to a routine if it's not needed. | Guy Harris | 2014-01-02 | 1 | -22/+17 |
* | Fill in the struct wtap_pkthdr in the seek-read routine. | Guy Harris | 2014-01-02 | 1 | -41/+56 |
* | Change G_GINT64_CONSTANT(xxxxU) to G_GUINT64_CONSTANT(xxxx) | Jakub Zawadzki | 2013-12-20 | 1 | -4/+4 |
* | wiretap: start using <wsutil/pint.h> | Jakub Zawadzki | 2013-12-03 | 1 | -25/+25 |
* | Get rid of C++ comments. | Guy Harris | 2013-11-21 | 1 | -1/+1 |
* | Cope with empty VWR files (bug 9428) | Martin Mathieson | 2013-11-21 | 1 | -2/+9 |
* | The "file types" we have are actually combinations of types and | Guy Harris | 2013-11-08 | 1 | -2/+2 |
* | Fix various: whitespace, comments & etc. | Bill Meier | 2013-10-16 | 1 | -612/+624 |
* | Add another cast. | Gerald Combs | 2013-10-15 | 1 | -1/+1 |
* | Add casts to fix some shortening errors. | Gerald Combs | 2013-10-15 | 1 | -4/+4 |
* | limit the values written to phdr.(cap)len to guint32, not to guint16 | Martin Kaiser | 2013-10-15 | 1 | -6/+6 |
* | code review of parse_s1_W_stats() | Martin Kaiser | 2013-10-15 | 1 | -2/+16 |
* | do some range checks when reading vwr files | Martin Kaiser | 2013-10-14 | 1 | -14/+14 |
* | From Tom Cook via https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=9147 Lo... | Alexis La Goutte | 2013-09-15 | 1 | -3/+3 |
* | Initialize float variables with float constants, not double constants, | Guy Harris | 2013-08-10 | 1 | -6/+6 |
* | IxVeriwave 11ac patch (bug 8912) from Tom Cook. | Martin Mathieson | 2013-08-10 | 1 | -528/+516 |