aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-pdcp-lte.h
AgeCommit message (Collapse)AuthorFilesLines
2015-03-10Change a lot of http:// URLs to https://.Gerald Combs1-1/+1
Most of our sites are now HTTPS-only. Update URLs accordingly. Update other URLs while we're at it. Remove or comment out dead links. Change-Id: I7c4f323e6585d22760bb90bf28fc0faa6b893a33 Reviewed-on: https://code.wireshark.org/review/7621 Petri-Dish: Gerald Combs <gerald@wireshark.org> Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org> Reviewed-by: Gerald Combs <gerald@wireshark.org>
2014-09-29Add editor modelines and adjust indentation as needed.Bill Meier1-2/+15
Change-Id: Id57d264299f2026d703c5b08bace4b24b32f184c Reviewed-on: https://code.wireshark.org/review/4371 Reviewed-by: Bill Meier <wmeier@newsguy.com>
2014-05-06PDCP LTE: add identification of ZUC based security algorithmsPascal Quantin1-1/+1
Change-Id: I63a66bc5822ac04f1a2bccd3a15adac30b65e397 Reviewed-on: https://code.wireshark.org/review/1541 Reviewed-by: Pascal Quantin <pascal.quantin@gmail.com>
2014-03-10PDCP LTE: various fixes related to security handlingMartin Mathieson1-0/+6
- fixes the wrap multiplier (for COUNT) for 12-bit sequence numbers - fixes dissection of non-ciphered IP payloads - adds a way for private protocols to set keys. The ueid->key lookup is now broken out into a separate function, and these settings are used in preference to the UAT ones Change-Id: I723307df3ee20425897b82beb9b431a0860075cf Reviewed-on: https://code.wireshark.org/review/583 Reviewed-by: Pascal Quantin <pascal.quantin@gmail.com>
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>
2014-01-27Send news of SecurityModeFailure to PDCP dissector, which will attempt to ↵Martin Mathieson1-1/+10
roll back to previous setting svn path=/trunk/; revision=54978
2014-01-06Call deciphering and integrity checking appropriately forMartin Mathieson1-1/+1
SecurityModeCommand and SecurityModeResponse. Also show when integrity has been checked and found to be correct. svn path=/trunk/; revision=54620
2013-11-11Include rohc struct inside pdcp instead of repeating all of the fieldsMartin Mathieson1-12/+1
svn path=/trunk/; revision=53262
2013-10-30Don't call RRC dissector if should be ciphered. Take care to allow ↵Martin Mathieson1-0/+1
SecurityModeComplete to be shown though (i.e. the next UL frame after security is configured) svn path=/trunk/; revision=52981
2013-10-29Pass security command details (integrity and ciphering algorithms) to PDCP ↵Martin Mathieson1-0/+15
(which doesn't yet do much with them) svn path=/trunk/; revision=52946
2013-07-06Add UE Id to UDP framing protocolPascal Quantin1-0/+3
svn path=/trunk/; revision=50422
2013-07-04Add channel id to UDP framing protocol and allow to dissect only the header ↵Pascal Quantin1-0/+2
of a signalling PDU (as we do for data PDUs) svn path=/trunk/; revision=50381
2013-02-26it's ==> its & its ==> it's as needed.Bill Meier1-2/+2
svn path=/trunk/; revision=47891
2013-02-24Various enhancements to ROHC dissector:Pascal Quantin1-1/+1
- fix dissection of type 0 packets with large CID - add dissection of type 1 and 2 packets (extension 3 dissection to be done) - add dissection of UDP checksum svn path=/trunk/; revision=47869
2012-09-21Upgrade PDCP LTE dissector to v11.0.0Pascal Quantin1-0/+1
svn path=/trunk/; revision=45049
2012-06-28Update Free Software Foundation address.Jakub Zawadzki1-1/+1
(COPYING will be updated in next commit) svn path=/trunk/; revision=43536
2012-01-23PDCP:Martin Mathieson1-0/+2
- Pass is_retx flag to PDCP from RLC in struct instead of calling function RLC: - use full key to look up sequence analysis results - avoids overwriting and attaching result details to wrong PDU - add links to previous and next 'OK' PDUs in channel - shorten some long variable and type names. svn path=/trunk/; revision=40656
2011-12-09Move the definition of enum rohc_mode into packet-rohc.h.Guy Harris1-7/+2
Have packet-pdcp-lte.h include packet-rohc.h to pick up that definition. Get rid of now-no-longer-necessary includes. svn path=/trunk/; revision=40123
2011-07-08Trivial: add a couple of newlines.Martin Mathieson1-0/+1
svn path=/trunk/; revision=37941
2010-11-22Add sequence analysis for PDCP, based upon RLC/UM.Martin Mathieson1-1/+2
For now, only enable it for logged PDCP frames, i.e. not for PDCP found inside RLC (that won't work properly until RLC re-assembly is implemented). svn path=/trunk/; revision=35000
2010-11-06Use guint16 after all, to avoid breaking the UDP framing protocol.Martin Mathieson1-1/+1
8 bits are enough though... svn path=/trunk/; revision=34798
2010-11-06Try to fix by making both use guint8, rather than guint16.Martin Mathieson1-1/+1
svn path=/trunk/; revision=34797
2010-11-06Get the Windows build going again.Anders Broman1-1/+1
- Martin is this the right fix? svn path=/trunk/; revision=34795
2010-11-05Pass ueid + channel-info into PDCP dissector.Martin Mathieson1-0/+2
This will allow me soon to track per-channel sequence numbers... svn path=/trunk/; revision=34793
2009-12-11From Pascal Quantin: add PDCP framing method over UDP.Martin Mathieson1-0/+76
svn path=/trunk/; revision=31243
2009-05-13- add direction filter to PDCPMartin Mathieson1-1/+1
- fix PDCP fields ("pdcp.*" -> "pdcp-lte.*") - improve PDCP info column output (to be more like RLC) svn path=/trunk/; revision=28342
2009-05-11Enable preference to call LTE RRC for data inside PDCP frames.Martin Mathieson1-11/+37
svn path=/trunk/; revision=28329
2009-02-19From Vincent Helfre:Martin Mathieson1-5/+7
#define some constants, and move constants into header files. Hopfully this will make it easier for these dissectors to be reused. svn path=/trunk/; revision=27487
2009-01-23Get ready to call PDCP LTE dissector (when its cleaned up and added).Martin Mathieson1-0/+61
svn path=/trunk/; revision=27289