aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-umts_mac.h
AgeCommit message (Collapse)AuthorFilesLines
2014-03-04Remove all $Id$ from top of fileAlexis La Goutte1-2/+0
(Using sed : sed -i '/^ \* \$Id\$/,+1 d') Fix manually some typo (in export_object_dicom.c and crc16-plain.c) Change-Id: I4c1ae68d1c4afeace8cb195b53c715cf9e1227a8 Reviewed-on: https://code.wireshark.org/review/497 Reviewed-by: Anders Broman <a.broman58@gmail.com>
2013-02-26Fix spelling/typos found using a list of commonly misspelled words.Bill Meier1-3/+3
The misspellings were mostly in comments but some were in text strings visible to the user. svn path=/trunk/; revision=47899
2012-12-26Fix a bunch of warnings.Guy Harris1-1/+1
Cast away some implicit 64-bit-to-32-bit conversion errors due to use of sizeof. Cast away some implicit 64-bit-to-32-bit conversion errors due to use of strtol() and strtoul(). Change some data types to avoid those implicit conversion warnings. When assigning a constant to a float, make sure the constant isn't a double, by appending "f" to the constant. Constify a bunch of variables, parameters, and return values to eliminate warnings due to strings being given const qualifiers. Cast away those warnings in some cases where an API we don't control forces us to do so. Enable a bunch of additional warnings by default. Note why at least some of the other warnings aren't enabled. randpkt.c and text2pcap.c are used to build programs, so they don't need to be in EXTRA_DIST. If the user specifies --enable-warnings-as-errors, add -Werror *even if the user specified --enable-extra-gcc-flags; assume they know what they're doing and are willing to have the compile fail due to the extra GCC warnings being treated as errors. svn path=/trunk/; revision=46748
2012-08-07From Jacob Nordgren and Rishie Sharma:Anders Broman1-0/+6
- umts_fp: fixed so CS content is not malformed content - RLC: added channel tree so you can filter on rbid etc - umts_fp,rlc,mac: added some hdsch-common code svn path=/trunk/; revision=44292
2012-07-31From Jacob Nordgren and Rishie Sharma:Anders Broman1-5/+7
NBAP: added preferences to change logical channel id to mac content type mapping. svn path=/trunk/; revision=44151
2012-07-30From Jacob Nordgren and Rishie Sharma:Anders Broman1-1/+6
-MAC-is update svn path=/trunk/; revision=44129
2012-07-26From Jacob Nordgren and Rishie Sharma:Anders Broman1-0/+1
- RRC now configures logical channels in HS-DSCH hs, and some HSDSCH common support added - RLC: modifed memory management, MAC: dch would set the incorrect logical channel for RLC svn path=/trunk/; revision=44027
2012-07-24From Jacob Nordgren and Rishie Sharma:Anders Broman1-1/+3
- Added support for EDCH type 2 MAC-is reassembly and slightly improved RLC error reporting - RLC: fixed bug where complete sequences in the end of a trace where not reassembled svn path=/trunk/; revision=43954
2012-07-16From Jacob Nordgren and Rishie Sharma:Anders Broman1-0/+23
Updated conversation handling to dissect FP/MAC/RLC svn path=/trunk/; revision=43749
2012-06-28Update Free Software Foundation address.Jakub Zawadzki1-1/+1
(COPYING will be updated in next commit) svn path=/trunk/; revision=43536
2012-03-06Use tvb_new-subset_remaining(...) rather than tvb_new_subset(...,-1,-1);Bill Meier1-17/+17
Add an additional note about duplicate filter names in the hf[] array; Convert "4 space tabs" to 4 spaces. svn path=/trunk/; revision=41375
2009-10-09From Tobias Witek:Anders Broman1-0/+50
New protocols: UMTS RLC (ETSI TS 125 322), UMTS MAC (ETSI TS 125 321). This does not currently compile cleanly but checking it in to be worked on. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=3495 svn path=/trunk/; revision=30414