- Timestamp:
- 12/21/09 19:05:13 (3 months ago)
- git-author:
- Harald Welte <laforge@gnumonks.org> / 2009-12-21T19:04:47Z+0100
- Parents:
- 306b7219ac616980b99a78f45b181aa980672d86
- Children:
- 6a22c0135a6ac49d716d38a92c9d9c9a329da980
- git-committer:
- Harald Welte <laforge@gnumonks.org> / 2009-12-21T19:05:13Z+0100
- Files:
-
- 1 modified
-
wireshark/abis_oml.patch (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wireshark/abis_oml.patch
ra165a42 r31b0347 1 1 Index: wireshark/epan/dissectors/Makefile.common 2 2 =================================================================== 3 --- wireshark.orig/epan/dissectors/Makefile.common 2009-10-21 23:03:44.000000000 +02004 +++ wireshark/epan/dissectors/Makefile.common 2009-10-21 23:03:57.000000000 +02005 @@ -47 2,6 +472,7 @@3 --- wireshark.orig/epan/dissectors/Makefile.common 4 +++ wireshark/epan/dissectors/Makefile.common 5 @@ -474,6 +474,7 @@ 6 6 packet-gsm_a_gm.c \ 7 7 packet-gsm_a_rp.c \ … … 13 13 Index: wireshark/epan/dissectors/packet-gsm_abis_oml.c 14 14 =================================================================== 15 --- /dev/null 1970-01-01 00:00:00.000000000 +000016 +++ wireshark/epan/dissectors/packet-gsm_abis_oml.c 2009-10-22 10:06:18.000000000 +020015 --- /dev/null 16 +++ wireshark/epan/dissectors/packet-gsm_abis_oml.c 17 17 @@ -0,0 +1,1365 @@ 18 18 +/* packet-abis_oml.c … … 1378 1378 + dissector_handle_t abis_oml_handle; 1379 1379 + 1380 + abis_oml_handle = find_dissector("abis_oml");1380 + abis_oml_handle = create_dissector_handle(dissect_abis_oml, proto_abis_oml); 1381 1381 + dissector_add("lapd.gsm.sapi", LAPD_GSM_SAPI_OM_PROC, abis_oml_handle); 1382 1382 +} 1383 1383 Index: wireshark/epan/dissectors/packet-gsm_abis_oml.h 1384 1384 =================================================================== 1385 --- /dev/null 1970-01-01 00:00:00.000000000 +00001386 +++ wireshark/epan/dissectors/packet-gsm_abis_oml.h 2009-10-21 23:03:57.000000000 +02001385 --- /dev/null 1386 +++ wireshark/epan/dissectors/packet-gsm_abis_oml.h 1387 1387 @@ -0,0 +1,786 @@ 1388 1388 +/* GSM Network Management messages on the A-bis interface
