├── COPYING ├── INSTALL ├── Makefile.in ├── README ├── README.md ├── autogen.sh ├── config.h.in ├── configure ├── configure.ac ├── mbts ├── A53 │ ├── COPYING │ ├── Makefile.in │ ├── a5.c │ ├── a5.h │ ├── a53.h │ ├── a53test.cpp │ ├── a5_speed.c │ ├── a5_test.c │ ├── bits.c │ ├── bits.h │ ├── gea.c │ ├── gea.h │ ├── gea_test.c │ ├── gprs_cipher.h │ ├── ifc.cpp │ ├── kasumi.c │ ├── kasumi.h │ ├── kasumi_test.c │ ├── linuxlist.h │ ├── utils.c │ └── utils.h ├── AUTHORS ├── CLI │ ├── CLI.cpp │ ├── CLI.h │ ├── Makefile.in │ └── README.CLI ├── COPYING ├── CommonLibs │ ├── A51.cpp │ ├── A51.h │ ├── A51Test.cpp │ ├── BitVector.cpp │ ├── BitVector.h │ ├── BitVectorTest.cpp │ ├── COPYING │ ├── Configuration.cpp │ ├── Configuration.h │ ├── ConfigurationTest.cpp │ ├── F16.h │ ├── F16Test.cpp │ ├── Interthread.h │ ├── InterthreadTest.cpp │ ├── LinkedLists.cpp │ ├── LinkedLists.h │ ├── LogTest.cpp │ ├── Logger.cpp │ ├── Logger.h │ ├── Makefile.in │ ├── MemoryLeak.h │ ├── README.common │ ├── Reporting.cpp │ ├── Reporting.h │ ├── ReportingTest.cpp │ ├── ScalarTypes.h │ ├── Sockets.cpp │ ├── Sockets.h │ ├── SocketsTest.cpp │ ├── Threads.cpp │ ├── Threads.h │ ├── Timeval.cpp │ ├── Timeval.h │ ├── TimevalTest.cpp │ ├── Utils.cpp │ ├── Utils.h │ ├── Vector.h │ ├── VectorTest.cpp │ ├── example.config │ ├── sqlite3util.cpp │ └── sqlite3util.h ├── Connection │ ├── CmdConnection.cpp │ ├── CmdConnection.h │ ├── ConnectionMap.cpp │ ├── ConnectionMap.h │ ├── GenConnection.cpp │ ├── GenConnection.h │ ├── GprsConnMap.cpp │ ├── GprsConnMap.h │ ├── LogConnection.cpp │ ├── LogConnection.h │ ├── Makefile.in │ ├── MediaConnection.cpp │ ├── MediaConnection.h │ ├── SigConnection.cpp │ └── SigConnection.h ├── Control │ ├── ControlCommon.cpp │ ├── ControlCommon.h │ ├── DCCHDispatch.cpp │ ├── Makefile.in │ ├── README.Control │ ├── RadioResource.cpp │ ├── RadioResource.h │ └── SMSCB.cpp ├── GPRS │ ├── BSSG.cpp │ ├── BSSG.h │ ├── BSSGMessages.cpp │ ├── BSSGMessages.h │ ├── ByteVector.cpp │ ├── ByteVector.h │ ├── CS4.txt │ ├── FEC.cpp │ ├── FEC.h │ ├── GPRSCLI.cpp │ ├── GPRSExport.h │ ├── GPRSInternal.h │ ├── GPRSRLC.h │ ├── GPRSTDMA.h │ ├── MAC.cpp │ ├── MAC.h │ ├── MSInfo.cpp │ ├── MSInfo.h │ ├── Makefile.in │ ├── MsgBase.cpp │ ├── MsgBase.h │ ├── RLC.cpp │ ├── RLCEngine.cpp │ ├── RLCEngine.h │ ├── RLCHdr.h │ ├── RLCMessages.cpp │ ├── RLCMessages.h │ ├── RList.h │ ├── ScalarTypes.h │ ├── TBF.cpp │ ├── TBF.h │ ├── makefile.pat │ ├── makefile.tests │ ├── notes.txt │ ├── pat.txt │ ├── pinghttp.c │ └── todo.txt ├── GSM │ ├── AppInfTest.cpp │ ├── GSM610Tables.cpp │ ├── GSM610Tables.h │ ├── GSMCommon.cpp │ ├── GSMCommon.h │ ├── GSMConfig.cpp │ ├── GSMConfig.h │ ├── GSML1FEC.cpp │ ├── GSML1FEC.h │ ├── GSML2LAPDm.cpp │ ├── GSML2LAPDm.h │ ├── GSML3CommonElements.cpp │ ├── GSML3CommonElements.h │ ├── GSML3GPRSElements.cpp │ ├── GSML3GPRSElements.h │ ├── GSML3Message.cpp │ ├── GSML3Message.h │ ├── GSML3RRElements.cpp │ ├── GSML3RRElements.h │ ├── GSML3RRMessages.cpp │ ├── GSML3RRMessages.h │ ├── GSMLogicalChannel.cpp │ ├── GSMLogicalChannel.h │ ├── GSMSAPMux.cpp │ ├── GSMSAPMux.h │ ├── GSMSMSCBL3Messages.cpp │ ├── GSMSMSCBL3Messages.h │ ├── GSMTAPDump.cpp │ ├── GSMTAPDump.h │ ├── GSMTDMA.cpp │ ├── GSMTDMA.h │ ├── GSMTransfer.cpp │ ├── GSMTransfer.h │ ├── Makefile.in │ ├── PhysicalStatus.cpp │ ├── PhysicalStatus.h │ ├── PowerManager.cpp │ ├── PowerManager.h │ └── gsmtap.h ├── Globals │ ├── Defines.h │ ├── Globals.cpp │ ├── Globals.h │ └── Makefile.in ├── LEGAL ├── Makefile.head.in ├── Makefile.tail.in ├── Peering │ ├── Makefile.in │ ├── NeighborTable.cpp │ └── NeighborTable.h ├── README ├── SGSNGGSN │ ├── GPRSL3Messages.cpp │ ├── GPRSL3Messages.h │ ├── Ggsn.cpp │ ├── Ggsn.h │ ├── LLC.cpp │ ├── LLC.h │ ├── Makefile.in │ ├── Sgsn.cpp │ ├── Sgsn.h │ ├── SgsnBase.h │ ├── SgsnCli.cpp │ ├── SgsnConn.h │ ├── SgsnExport.h │ ├── iputils.cpp │ ├── miniggsn.cpp │ └── miniggsn.h ├── TRXManager │ ├── Makefile.in │ ├── README.TRXManager │ ├── TRXManager.cpp │ ├── TRXManager.h │ └── clockdump.sh ├── Transceiver52M │ ├── Complex.h │ ├── DummyLoad.cpp │ ├── DummyLoad.h │ ├── Makefile.in │ ├── README │ ├── README.DFEsymbolspaced │ ├── README.Talgorithm │ ├── Resampler.cpp │ ├── Resampler.h │ ├── Transceiver.cpp │ ├── Transceiver.h │ ├── UHDDevice.cpp │ ├── USRPDevice.cpp │ ├── USRPDevice.h │ ├── USRPping.cpp │ ├── convert.c │ ├── convert.h │ ├── convolve.c │ ├── convolve.h │ ├── inband-signaling-usb │ ├── laurent.m │ ├── pulseApproximate.m │ ├── radioClock.cpp │ ├── radioClock.h │ ├── radioDevice.h │ ├── radioInterface.cpp │ ├── radioInterface.h │ ├── radioInterfaceResamp.cpp │ ├── radioVector.cpp │ ├── radioVector.h │ ├── rcvLPF_651.h │ ├── runTransceiver.cpp │ ├── sendLPF_961.h │ ├── sigProcLib.cpp │ ├── sigProcLib.h │ ├── sigProcLibTest.cpp │ └── std_inband.rbf ├── TransceiverRAD1 │ ├── Complex.h │ ├── DummyLoad.cpp │ ├── DummyLoad.h │ ├── Makefile.in │ ├── RAD1Cmd.cpp │ ├── RAD1Device.cpp │ ├── RAD1Device.h │ ├── RAD1RxRawPower.cpp │ ├── RAD1RxRawPowerSweep.cpp │ ├── RAD1SN.cpp │ ├── RAD1ping.cpp │ ├── README │ ├── README.DFEsymbolspaced │ ├── README.Talgorithm │ ├── Transceiver.cpp │ ├── Transceiver.h │ ├── ad9862.h │ ├── bladeRFDevice.cpp │ ├── bladeRFDevice.h │ ├── burn-rnrad1-eeprom.sh │ ├── bytesex.h │ ├── commands.h │ ├── ezusb.ihx │ ├── firmware.img │ ├── fpga.rbf │ ├── fpga_regs.h │ ├── fusb.cpp │ ├── fusb.h │ ├── hostedx115.rbf │ ├── hostedx40.rbf │ ├── i2c.h │ ├── ids.h │ ├── inband-signaling-usb │ ├── interfaces.h │ ├── pulseApproximate.m │ ├── radioDevice.h │ ├── radioInterface.cpp │ ├── radioInterface.h │ ├── rnrad1.h │ ├── rnrad1Core.cpp │ ├── rnrad1Core.h │ ├── rnrad1Rx.cpp │ ├── rnrad1Tx.cpp │ ├── runTransceiver.cpp │ ├── sigProcLib.cpp │ ├── sigProcLib.h │ ├── sigProcLibTest.cpp │ └── spi.h ├── apps │ ├── GetConfigurationKeys.cpp │ ├── Makefile.in │ └── OpenBTS.cpp ├── ctags.sh ├── doxconfig └── sqlite3 │ ├── Makefile.in │ ├── sqlite3.c │ ├── sqlite3.h │ └── sqlite3ext.h ├── nib ├── Makefile.in ├── auth │ ├── Makefile.in │ ├── do_comp128.c │ ├── gsm_auth.sh │ ├── milenage │ │ ├── main.c │ │ ├── milenage.c │ │ ├── milenage.h │ │ ├── rijndael.c │ │ └── rijndael.h │ └── test_crypto.sh ├── custom_sms.js ├── echo.au ├── nib.js ├── subscribers.conf.sample ├── web │ ├── .htaccess │ ├── README │ ├── ansql │ │ ├── COPYING │ │ ├── ansql_tests │ │ │ ├── runTest_JsObjFile.php │ │ │ └── test_js1.js │ │ ├── base_classes.php │ │ ├── config.php.sample │ │ ├── debug.php │ │ ├── debug_all.php │ │ ├── default_classes │ │ │ └── actionlog.php │ │ ├── force_update.php │ │ ├── framework.php │ │ ├── javascript.js │ │ ├── lib.php │ │ ├── lib_files.php │ │ ├── lib_json_requests.php │ │ ├── set_debug.php │ │ ├── socketconn.php │ │ └── use_json_requests.php │ ├── config.php │ ├── css │ │ └── main.css │ ├── custom_sms.php │ ├── defaults.php │ ├── download.php │ ├── images │ │ ├── advanced.jpg │ │ ├── basic.jpg │ │ ├── question.jpg │ │ ├── sim_programmer.png │ │ └── yatebts_nib_logo.png │ ├── index.php │ ├── javascript.js │ ├── lib │ │ ├── lib_proj.php │ │ └── menu.php │ ├── main.php │ ├── modules │ │ └── default │ │ │ ├── bts_configuration.php │ │ │ ├── outgoing.php │ │ │ └── subscribers.php │ ├── structure.php │ └── ybts │ │ ├── check_validity_fields_ybts.php │ │ ├── create_radio_band_select_array.php │ │ ├── lib_ybts.php │ │ ├── test │ │ └── test_ybts_fields_validity.php │ │ ├── ybts_fields.php │ │ └── ybts_menu.php ├── welcome.au └── welcome.js ├── revision.txt ├── roaming ├── Makefile.in ├── handover.js ├── lib_str_util.js └── roaming.js ├── ussd_test.js ├── yate-bts.spec ├── yate-bts.spec.in ├── ybts.conf.sample ├── ybts.cpp └── ybts.h /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/COPYING -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/INSTALL -------------------------------------------------------------------------------- /Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/Makefile.in -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/README -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/README.md -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/autogen.sh -------------------------------------------------------------------------------- /config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/config.h.in -------------------------------------------------------------------------------- /configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/configure -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/configure.ac -------------------------------------------------------------------------------- /mbts/A53/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/A53/COPYING -------------------------------------------------------------------------------- /mbts/A53/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/A53/Makefile.in -------------------------------------------------------------------------------- /mbts/A53/a5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/A53/a5.c -------------------------------------------------------------------------------- /mbts/A53/a5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/A53/a5.h -------------------------------------------------------------------------------- /mbts/A53/a53.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/A53/a53.h -------------------------------------------------------------------------------- /mbts/A53/a53test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/A53/a53test.cpp -------------------------------------------------------------------------------- /mbts/A53/a5_speed.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/A53/a5_speed.c -------------------------------------------------------------------------------- /mbts/A53/a5_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/A53/a5_test.c -------------------------------------------------------------------------------- /mbts/A53/bits.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/A53/bits.c -------------------------------------------------------------------------------- /mbts/A53/bits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/A53/bits.h -------------------------------------------------------------------------------- /mbts/A53/gea.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/A53/gea.c -------------------------------------------------------------------------------- /mbts/A53/gea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/A53/gea.h -------------------------------------------------------------------------------- /mbts/A53/gea_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/A53/gea_test.c -------------------------------------------------------------------------------- /mbts/A53/gprs_cipher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/A53/gprs_cipher.h -------------------------------------------------------------------------------- /mbts/A53/ifc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/A53/ifc.cpp -------------------------------------------------------------------------------- /mbts/A53/kasumi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/A53/kasumi.c -------------------------------------------------------------------------------- /mbts/A53/kasumi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/A53/kasumi.h -------------------------------------------------------------------------------- /mbts/A53/kasumi_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/A53/kasumi_test.c -------------------------------------------------------------------------------- /mbts/A53/linuxlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/A53/linuxlist.h -------------------------------------------------------------------------------- /mbts/A53/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/A53/utils.c -------------------------------------------------------------------------------- /mbts/A53/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/A53/utils.h -------------------------------------------------------------------------------- /mbts/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/AUTHORS -------------------------------------------------------------------------------- /mbts/CLI/CLI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/CLI/CLI.cpp -------------------------------------------------------------------------------- /mbts/CLI/CLI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/CLI/CLI.h -------------------------------------------------------------------------------- /mbts/CLI/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/CLI/Makefile.in -------------------------------------------------------------------------------- /mbts/CLI/README.CLI: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/CLI/README.CLI -------------------------------------------------------------------------------- /mbts/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/COPYING -------------------------------------------------------------------------------- /mbts/CommonLibs/A51.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/CommonLibs/A51.cpp -------------------------------------------------------------------------------- /mbts/CommonLibs/A51.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/CommonLibs/A51.h -------------------------------------------------------------------------------- /mbts/CommonLibs/A51Test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/CommonLibs/A51Test.cpp -------------------------------------------------------------------------------- /mbts/CommonLibs/BitVector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/CommonLibs/BitVector.cpp -------------------------------------------------------------------------------- /mbts/CommonLibs/BitVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/CommonLibs/BitVector.h -------------------------------------------------------------------------------- /mbts/CommonLibs/BitVectorTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/CommonLibs/BitVectorTest.cpp -------------------------------------------------------------------------------- /mbts/CommonLibs/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/CommonLibs/COPYING -------------------------------------------------------------------------------- /mbts/CommonLibs/Configuration.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/CommonLibs/Configuration.cpp -------------------------------------------------------------------------------- /mbts/CommonLibs/Configuration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/CommonLibs/Configuration.h -------------------------------------------------------------------------------- /mbts/CommonLibs/ConfigurationTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/CommonLibs/ConfigurationTest.cpp -------------------------------------------------------------------------------- /mbts/CommonLibs/F16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/CommonLibs/F16.h -------------------------------------------------------------------------------- /mbts/CommonLibs/F16Test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/CommonLibs/F16Test.cpp -------------------------------------------------------------------------------- /mbts/CommonLibs/Interthread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/CommonLibs/Interthread.h -------------------------------------------------------------------------------- /mbts/CommonLibs/InterthreadTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/CommonLibs/InterthreadTest.cpp -------------------------------------------------------------------------------- /mbts/CommonLibs/LinkedLists.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/CommonLibs/LinkedLists.cpp -------------------------------------------------------------------------------- /mbts/CommonLibs/LinkedLists.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/CommonLibs/LinkedLists.h -------------------------------------------------------------------------------- /mbts/CommonLibs/LogTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/CommonLibs/LogTest.cpp -------------------------------------------------------------------------------- /mbts/CommonLibs/Logger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/CommonLibs/Logger.cpp -------------------------------------------------------------------------------- /mbts/CommonLibs/Logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/CommonLibs/Logger.h -------------------------------------------------------------------------------- /mbts/CommonLibs/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/CommonLibs/Makefile.in -------------------------------------------------------------------------------- /mbts/CommonLibs/MemoryLeak.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/CommonLibs/MemoryLeak.h -------------------------------------------------------------------------------- /mbts/CommonLibs/README.common: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/CommonLibs/README.common -------------------------------------------------------------------------------- /mbts/CommonLibs/Reporting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/CommonLibs/Reporting.cpp -------------------------------------------------------------------------------- /mbts/CommonLibs/Reporting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/CommonLibs/Reporting.h -------------------------------------------------------------------------------- /mbts/CommonLibs/ReportingTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/CommonLibs/ReportingTest.cpp -------------------------------------------------------------------------------- /mbts/CommonLibs/ScalarTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/CommonLibs/ScalarTypes.h -------------------------------------------------------------------------------- /mbts/CommonLibs/Sockets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/CommonLibs/Sockets.cpp -------------------------------------------------------------------------------- /mbts/CommonLibs/Sockets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/CommonLibs/Sockets.h -------------------------------------------------------------------------------- /mbts/CommonLibs/SocketsTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/CommonLibs/SocketsTest.cpp -------------------------------------------------------------------------------- /mbts/CommonLibs/Threads.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/CommonLibs/Threads.cpp -------------------------------------------------------------------------------- /mbts/CommonLibs/Threads.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/CommonLibs/Threads.h -------------------------------------------------------------------------------- /mbts/CommonLibs/Timeval.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/CommonLibs/Timeval.cpp -------------------------------------------------------------------------------- /mbts/CommonLibs/Timeval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/CommonLibs/Timeval.h -------------------------------------------------------------------------------- /mbts/CommonLibs/TimevalTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/CommonLibs/TimevalTest.cpp -------------------------------------------------------------------------------- /mbts/CommonLibs/Utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/CommonLibs/Utils.cpp -------------------------------------------------------------------------------- /mbts/CommonLibs/Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/CommonLibs/Utils.h -------------------------------------------------------------------------------- /mbts/CommonLibs/Vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/CommonLibs/Vector.h -------------------------------------------------------------------------------- /mbts/CommonLibs/VectorTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/CommonLibs/VectorTest.cpp -------------------------------------------------------------------------------- /mbts/CommonLibs/example.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/CommonLibs/example.config -------------------------------------------------------------------------------- /mbts/CommonLibs/sqlite3util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/CommonLibs/sqlite3util.cpp -------------------------------------------------------------------------------- /mbts/CommonLibs/sqlite3util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/CommonLibs/sqlite3util.h -------------------------------------------------------------------------------- /mbts/Connection/CmdConnection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/Connection/CmdConnection.cpp -------------------------------------------------------------------------------- /mbts/Connection/CmdConnection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/Connection/CmdConnection.h -------------------------------------------------------------------------------- /mbts/Connection/ConnectionMap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/Connection/ConnectionMap.cpp -------------------------------------------------------------------------------- /mbts/Connection/ConnectionMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/Connection/ConnectionMap.h -------------------------------------------------------------------------------- /mbts/Connection/GenConnection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/Connection/GenConnection.cpp -------------------------------------------------------------------------------- /mbts/Connection/GenConnection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/Connection/GenConnection.h -------------------------------------------------------------------------------- /mbts/Connection/GprsConnMap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/Connection/GprsConnMap.cpp -------------------------------------------------------------------------------- /mbts/Connection/GprsConnMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/Connection/GprsConnMap.h -------------------------------------------------------------------------------- /mbts/Connection/LogConnection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/Connection/LogConnection.cpp -------------------------------------------------------------------------------- /mbts/Connection/LogConnection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/Connection/LogConnection.h -------------------------------------------------------------------------------- /mbts/Connection/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/Connection/Makefile.in -------------------------------------------------------------------------------- /mbts/Connection/MediaConnection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/Connection/MediaConnection.cpp -------------------------------------------------------------------------------- /mbts/Connection/MediaConnection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/Connection/MediaConnection.h -------------------------------------------------------------------------------- /mbts/Connection/SigConnection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/Connection/SigConnection.cpp -------------------------------------------------------------------------------- /mbts/Connection/SigConnection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/Connection/SigConnection.h -------------------------------------------------------------------------------- /mbts/Control/ControlCommon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/Control/ControlCommon.cpp -------------------------------------------------------------------------------- /mbts/Control/ControlCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/Control/ControlCommon.h -------------------------------------------------------------------------------- /mbts/Control/DCCHDispatch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/Control/DCCHDispatch.cpp -------------------------------------------------------------------------------- /mbts/Control/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/Control/Makefile.in -------------------------------------------------------------------------------- /mbts/Control/README.Control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/Control/README.Control -------------------------------------------------------------------------------- /mbts/Control/RadioResource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/Control/RadioResource.cpp -------------------------------------------------------------------------------- /mbts/Control/RadioResource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/Control/RadioResource.h -------------------------------------------------------------------------------- /mbts/Control/SMSCB.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/Control/SMSCB.cpp -------------------------------------------------------------------------------- /mbts/GPRS/BSSG.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/GPRS/BSSG.cpp -------------------------------------------------------------------------------- /mbts/GPRS/BSSG.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/GPRS/BSSG.h -------------------------------------------------------------------------------- /mbts/GPRS/BSSGMessages.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/GPRS/BSSGMessages.cpp -------------------------------------------------------------------------------- /mbts/GPRS/BSSGMessages.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/GPRS/BSSGMessages.h -------------------------------------------------------------------------------- /mbts/GPRS/ByteVector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/GPRS/ByteVector.cpp -------------------------------------------------------------------------------- /mbts/GPRS/ByteVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/GPRS/ByteVector.h -------------------------------------------------------------------------------- /mbts/GPRS/CS4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/GPRS/CS4.txt -------------------------------------------------------------------------------- /mbts/GPRS/FEC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/GPRS/FEC.cpp -------------------------------------------------------------------------------- /mbts/GPRS/FEC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/GPRS/FEC.h -------------------------------------------------------------------------------- /mbts/GPRS/GPRSCLI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/GPRS/GPRSCLI.cpp -------------------------------------------------------------------------------- /mbts/GPRS/GPRSExport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/GPRS/GPRSExport.h -------------------------------------------------------------------------------- /mbts/GPRS/GPRSInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/GPRS/GPRSInternal.h -------------------------------------------------------------------------------- /mbts/GPRS/GPRSRLC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/GPRS/GPRSRLC.h -------------------------------------------------------------------------------- /mbts/GPRS/GPRSTDMA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/GPRS/GPRSTDMA.h -------------------------------------------------------------------------------- /mbts/GPRS/MAC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/GPRS/MAC.cpp -------------------------------------------------------------------------------- /mbts/GPRS/MAC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/GPRS/MAC.h -------------------------------------------------------------------------------- /mbts/GPRS/MSInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/GPRS/MSInfo.cpp -------------------------------------------------------------------------------- /mbts/GPRS/MSInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/GPRS/MSInfo.h -------------------------------------------------------------------------------- /mbts/GPRS/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/GPRS/Makefile.in -------------------------------------------------------------------------------- /mbts/GPRS/MsgBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/GPRS/MsgBase.cpp -------------------------------------------------------------------------------- /mbts/GPRS/MsgBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/GPRS/MsgBase.h -------------------------------------------------------------------------------- /mbts/GPRS/RLC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/GPRS/RLC.cpp -------------------------------------------------------------------------------- /mbts/GPRS/RLCEngine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/GPRS/RLCEngine.cpp -------------------------------------------------------------------------------- /mbts/GPRS/RLCEngine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/GPRS/RLCEngine.h -------------------------------------------------------------------------------- /mbts/GPRS/RLCHdr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/GPRS/RLCHdr.h -------------------------------------------------------------------------------- /mbts/GPRS/RLCMessages.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/GPRS/RLCMessages.cpp -------------------------------------------------------------------------------- /mbts/GPRS/RLCMessages.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/GPRS/RLCMessages.h -------------------------------------------------------------------------------- /mbts/GPRS/RList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/GPRS/RList.h -------------------------------------------------------------------------------- /mbts/GPRS/ScalarTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/GPRS/ScalarTypes.h -------------------------------------------------------------------------------- /mbts/GPRS/TBF.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/GPRS/TBF.cpp -------------------------------------------------------------------------------- /mbts/GPRS/TBF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/GPRS/TBF.h -------------------------------------------------------------------------------- /mbts/GPRS/makefile.pat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/GPRS/makefile.pat -------------------------------------------------------------------------------- /mbts/GPRS/makefile.tests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/GPRS/makefile.tests -------------------------------------------------------------------------------- /mbts/GPRS/notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/GPRS/notes.txt -------------------------------------------------------------------------------- /mbts/GPRS/pat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/GPRS/pat.txt -------------------------------------------------------------------------------- /mbts/GPRS/pinghttp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/GPRS/pinghttp.c -------------------------------------------------------------------------------- /mbts/GPRS/todo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/GPRS/todo.txt -------------------------------------------------------------------------------- /mbts/GSM/AppInfTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/GSM/AppInfTest.cpp -------------------------------------------------------------------------------- /mbts/GSM/GSM610Tables.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/GSM/GSM610Tables.cpp -------------------------------------------------------------------------------- /mbts/GSM/GSM610Tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/GSM/GSM610Tables.h -------------------------------------------------------------------------------- /mbts/GSM/GSMCommon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/GSM/GSMCommon.cpp -------------------------------------------------------------------------------- /mbts/GSM/GSMCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/GSM/GSMCommon.h -------------------------------------------------------------------------------- /mbts/GSM/GSMConfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/GSM/GSMConfig.cpp -------------------------------------------------------------------------------- /mbts/GSM/GSMConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/GSM/GSMConfig.h -------------------------------------------------------------------------------- /mbts/GSM/GSML1FEC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/GSM/GSML1FEC.cpp -------------------------------------------------------------------------------- /mbts/GSM/GSML1FEC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/GSM/GSML1FEC.h -------------------------------------------------------------------------------- /mbts/GSM/GSML2LAPDm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/GSM/GSML2LAPDm.cpp -------------------------------------------------------------------------------- /mbts/GSM/GSML2LAPDm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/GSM/GSML2LAPDm.h -------------------------------------------------------------------------------- /mbts/GSM/GSML3CommonElements.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/GSM/GSML3CommonElements.cpp -------------------------------------------------------------------------------- /mbts/GSM/GSML3CommonElements.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/GSM/GSML3CommonElements.h -------------------------------------------------------------------------------- /mbts/GSM/GSML3GPRSElements.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/GSM/GSML3GPRSElements.cpp -------------------------------------------------------------------------------- /mbts/GSM/GSML3GPRSElements.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/GSM/GSML3GPRSElements.h -------------------------------------------------------------------------------- /mbts/GSM/GSML3Message.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/GSM/GSML3Message.cpp -------------------------------------------------------------------------------- /mbts/GSM/GSML3Message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/GSM/GSML3Message.h -------------------------------------------------------------------------------- /mbts/GSM/GSML3RRElements.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/GSM/GSML3RRElements.cpp -------------------------------------------------------------------------------- /mbts/GSM/GSML3RRElements.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/GSM/GSML3RRElements.h -------------------------------------------------------------------------------- /mbts/GSM/GSML3RRMessages.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/GSM/GSML3RRMessages.cpp -------------------------------------------------------------------------------- /mbts/GSM/GSML3RRMessages.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/GSM/GSML3RRMessages.h -------------------------------------------------------------------------------- /mbts/GSM/GSMLogicalChannel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/GSM/GSMLogicalChannel.cpp -------------------------------------------------------------------------------- /mbts/GSM/GSMLogicalChannel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/GSM/GSMLogicalChannel.h -------------------------------------------------------------------------------- /mbts/GSM/GSMSAPMux.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/GSM/GSMSAPMux.cpp -------------------------------------------------------------------------------- /mbts/GSM/GSMSAPMux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/GSM/GSMSAPMux.h -------------------------------------------------------------------------------- /mbts/GSM/GSMSMSCBL3Messages.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/GSM/GSMSMSCBL3Messages.cpp -------------------------------------------------------------------------------- /mbts/GSM/GSMSMSCBL3Messages.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/GSM/GSMSMSCBL3Messages.h -------------------------------------------------------------------------------- /mbts/GSM/GSMTAPDump.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/GSM/GSMTAPDump.cpp -------------------------------------------------------------------------------- /mbts/GSM/GSMTAPDump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/GSM/GSMTAPDump.h -------------------------------------------------------------------------------- /mbts/GSM/GSMTDMA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/GSM/GSMTDMA.cpp -------------------------------------------------------------------------------- /mbts/GSM/GSMTDMA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/GSM/GSMTDMA.h -------------------------------------------------------------------------------- /mbts/GSM/GSMTransfer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/GSM/GSMTransfer.cpp -------------------------------------------------------------------------------- /mbts/GSM/GSMTransfer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/GSM/GSMTransfer.h -------------------------------------------------------------------------------- /mbts/GSM/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/GSM/Makefile.in -------------------------------------------------------------------------------- /mbts/GSM/PhysicalStatus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/GSM/PhysicalStatus.cpp -------------------------------------------------------------------------------- /mbts/GSM/PhysicalStatus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/GSM/PhysicalStatus.h -------------------------------------------------------------------------------- /mbts/GSM/PowerManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/GSM/PowerManager.cpp -------------------------------------------------------------------------------- /mbts/GSM/PowerManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/GSM/PowerManager.h -------------------------------------------------------------------------------- /mbts/GSM/gsmtap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/GSM/gsmtap.h -------------------------------------------------------------------------------- /mbts/Globals/Defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/Globals/Defines.h -------------------------------------------------------------------------------- /mbts/Globals/Globals.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/Globals/Globals.cpp -------------------------------------------------------------------------------- /mbts/Globals/Globals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/Globals/Globals.h -------------------------------------------------------------------------------- /mbts/Globals/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/Globals/Makefile.in -------------------------------------------------------------------------------- /mbts/LEGAL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/LEGAL -------------------------------------------------------------------------------- /mbts/Makefile.head.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/Makefile.head.in -------------------------------------------------------------------------------- /mbts/Makefile.tail.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/Makefile.tail.in -------------------------------------------------------------------------------- /mbts/Peering/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/Peering/Makefile.in -------------------------------------------------------------------------------- /mbts/Peering/NeighborTable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/Peering/NeighborTable.cpp -------------------------------------------------------------------------------- /mbts/Peering/NeighborTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/Peering/NeighborTable.h -------------------------------------------------------------------------------- /mbts/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/README -------------------------------------------------------------------------------- /mbts/SGSNGGSN/GPRSL3Messages.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/SGSNGGSN/GPRSL3Messages.cpp -------------------------------------------------------------------------------- /mbts/SGSNGGSN/GPRSL3Messages.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/SGSNGGSN/GPRSL3Messages.h -------------------------------------------------------------------------------- /mbts/SGSNGGSN/Ggsn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/SGSNGGSN/Ggsn.cpp -------------------------------------------------------------------------------- /mbts/SGSNGGSN/Ggsn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/SGSNGGSN/Ggsn.h -------------------------------------------------------------------------------- /mbts/SGSNGGSN/LLC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/SGSNGGSN/LLC.cpp -------------------------------------------------------------------------------- /mbts/SGSNGGSN/LLC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/SGSNGGSN/LLC.h -------------------------------------------------------------------------------- /mbts/SGSNGGSN/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/SGSNGGSN/Makefile.in -------------------------------------------------------------------------------- /mbts/SGSNGGSN/Sgsn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/SGSNGGSN/Sgsn.cpp -------------------------------------------------------------------------------- /mbts/SGSNGGSN/Sgsn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/SGSNGGSN/Sgsn.h -------------------------------------------------------------------------------- /mbts/SGSNGGSN/SgsnBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/SGSNGGSN/SgsnBase.h -------------------------------------------------------------------------------- /mbts/SGSNGGSN/SgsnCli.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/SGSNGGSN/SgsnCli.cpp -------------------------------------------------------------------------------- /mbts/SGSNGGSN/SgsnConn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/SGSNGGSN/SgsnConn.h -------------------------------------------------------------------------------- /mbts/SGSNGGSN/SgsnExport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/SGSNGGSN/SgsnExport.h -------------------------------------------------------------------------------- /mbts/SGSNGGSN/iputils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/SGSNGGSN/iputils.cpp -------------------------------------------------------------------------------- /mbts/SGSNGGSN/miniggsn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/SGSNGGSN/miniggsn.cpp -------------------------------------------------------------------------------- /mbts/SGSNGGSN/miniggsn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/SGSNGGSN/miniggsn.h -------------------------------------------------------------------------------- /mbts/TRXManager/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/TRXManager/Makefile.in -------------------------------------------------------------------------------- /mbts/TRXManager/README.TRXManager: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/TRXManager/README.TRXManager -------------------------------------------------------------------------------- /mbts/TRXManager/TRXManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/TRXManager/TRXManager.cpp -------------------------------------------------------------------------------- /mbts/TRXManager/TRXManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/TRXManager/TRXManager.h -------------------------------------------------------------------------------- /mbts/TRXManager/clockdump.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | sudo tcpdump -i lo0 -A udp port 5700 3 | 4 | -------------------------------------------------------------------------------- /mbts/Transceiver52M/Complex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/Transceiver52M/Complex.h -------------------------------------------------------------------------------- /mbts/Transceiver52M/DummyLoad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/Transceiver52M/DummyLoad.cpp -------------------------------------------------------------------------------- /mbts/Transceiver52M/DummyLoad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/Transceiver52M/DummyLoad.h -------------------------------------------------------------------------------- /mbts/Transceiver52M/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/Transceiver52M/Makefile.in -------------------------------------------------------------------------------- /mbts/Transceiver52M/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/Transceiver52M/README -------------------------------------------------------------------------------- /mbts/Transceiver52M/README.DFEsymbolspaced: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/Transceiver52M/README.DFEsymbolspaced -------------------------------------------------------------------------------- /mbts/Transceiver52M/README.Talgorithm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/Transceiver52M/README.Talgorithm -------------------------------------------------------------------------------- /mbts/Transceiver52M/Resampler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/Transceiver52M/Resampler.cpp -------------------------------------------------------------------------------- /mbts/Transceiver52M/Resampler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/Transceiver52M/Resampler.h -------------------------------------------------------------------------------- /mbts/Transceiver52M/Transceiver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/Transceiver52M/Transceiver.cpp -------------------------------------------------------------------------------- /mbts/Transceiver52M/Transceiver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/Transceiver52M/Transceiver.h -------------------------------------------------------------------------------- /mbts/Transceiver52M/UHDDevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/Transceiver52M/UHDDevice.cpp -------------------------------------------------------------------------------- /mbts/Transceiver52M/USRPDevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/Transceiver52M/USRPDevice.cpp -------------------------------------------------------------------------------- /mbts/Transceiver52M/USRPDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/Transceiver52M/USRPDevice.h -------------------------------------------------------------------------------- /mbts/Transceiver52M/USRPping.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/Transceiver52M/USRPping.cpp -------------------------------------------------------------------------------- /mbts/Transceiver52M/convert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/Transceiver52M/convert.c -------------------------------------------------------------------------------- /mbts/Transceiver52M/convert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/Transceiver52M/convert.h -------------------------------------------------------------------------------- /mbts/Transceiver52M/convolve.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/Transceiver52M/convolve.c -------------------------------------------------------------------------------- /mbts/Transceiver52M/convolve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/Transceiver52M/convolve.h -------------------------------------------------------------------------------- /mbts/Transceiver52M/inband-signaling-usb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/Transceiver52M/inband-signaling-usb -------------------------------------------------------------------------------- /mbts/Transceiver52M/laurent.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/Transceiver52M/laurent.m -------------------------------------------------------------------------------- /mbts/Transceiver52M/pulseApproximate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/Transceiver52M/pulseApproximate.m -------------------------------------------------------------------------------- /mbts/Transceiver52M/radioClock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/Transceiver52M/radioClock.cpp -------------------------------------------------------------------------------- /mbts/Transceiver52M/radioClock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/Transceiver52M/radioClock.h -------------------------------------------------------------------------------- /mbts/Transceiver52M/radioDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/Transceiver52M/radioDevice.h -------------------------------------------------------------------------------- /mbts/Transceiver52M/radioInterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/Transceiver52M/radioInterface.cpp -------------------------------------------------------------------------------- /mbts/Transceiver52M/radioInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/Transceiver52M/radioInterface.h -------------------------------------------------------------------------------- /mbts/Transceiver52M/radioInterfaceResamp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/Transceiver52M/radioInterfaceResamp.cpp -------------------------------------------------------------------------------- /mbts/Transceiver52M/radioVector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/Transceiver52M/radioVector.cpp -------------------------------------------------------------------------------- /mbts/Transceiver52M/radioVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/Transceiver52M/radioVector.h -------------------------------------------------------------------------------- /mbts/Transceiver52M/rcvLPF_651.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/Transceiver52M/rcvLPF_651.h -------------------------------------------------------------------------------- /mbts/Transceiver52M/runTransceiver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/Transceiver52M/runTransceiver.cpp -------------------------------------------------------------------------------- /mbts/Transceiver52M/sendLPF_961.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/Transceiver52M/sendLPF_961.h -------------------------------------------------------------------------------- /mbts/Transceiver52M/sigProcLib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/Transceiver52M/sigProcLib.cpp -------------------------------------------------------------------------------- /mbts/Transceiver52M/sigProcLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/Transceiver52M/sigProcLib.h -------------------------------------------------------------------------------- /mbts/Transceiver52M/sigProcLibTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/Transceiver52M/sigProcLibTest.cpp -------------------------------------------------------------------------------- /mbts/Transceiver52M/std_inband.rbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/Transceiver52M/std_inband.rbf -------------------------------------------------------------------------------- /mbts/TransceiverRAD1/Complex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/TransceiverRAD1/Complex.h -------------------------------------------------------------------------------- /mbts/TransceiverRAD1/DummyLoad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/TransceiverRAD1/DummyLoad.cpp -------------------------------------------------------------------------------- /mbts/TransceiverRAD1/DummyLoad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/TransceiverRAD1/DummyLoad.h -------------------------------------------------------------------------------- /mbts/TransceiverRAD1/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/TransceiverRAD1/Makefile.in -------------------------------------------------------------------------------- /mbts/TransceiverRAD1/RAD1Cmd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/TransceiverRAD1/RAD1Cmd.cpp -------------------------------------------------------------------------------- /mbts/TransceiverRAD1/RAD1Device.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/TransceiverRAD1/RAD1Device.cpp -------------------------------------------------------------------------------- /mbts/TransceiverRAD1/RAD1Device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/TransceiverRAD1/RAD1Device.h -------------------------------------------------------------------------------- /mbts/TransceiverRAD1/RAD1RxRawPower.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/TransceiverRAD1/RAD1RxRawPower.cpp -------------------------------------------------------------------------------- /mbts/TransceiverRAD1/RAD1RxRawPowerSweep.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/TransceiverRAD1/RAD1RxRawPowerSweep.cpp -------------------------------------------------------------------------------- /mbts/TransceiverRAD1/RAD1SN.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/TransceiverRAD1/RAD1SN.cpp -------------------------------------------------------------------------------- /mbts/TransceiverRAD1/RAD1ping.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/TransceiverRAD1/RAD1ping.cpp -------------------------------------------------------------------------------- /mbts/TransceiverRAD1/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/TransceiverRAD1/README -------------------------------------------------------------------------------- /mbts/TransceiverRAD1/README.DFEsymbolspaced: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/TransceiverRAD1/README.DFEsymbolspaced -------------------------------------------------------------------------------- /mbts/TransceiverRAD1/README.Talgorithm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/TransceiverRAD1/README.Talgorithm -------------------------------------------------------------------------------- /mbts/TransceiverRAD1/Transceiver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/TransceiverRAD1/Transceiver.cpp -------------------------------------------------------------------------------- /mbts/TransceiverRAD1/Transceiver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/TransceiverRAD1/Transceiver.h -------------------------------------------------------------------------------- /mbts/TransceiverRAD1/ad9862.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/TransceiverRAD1/ad9862.h -------------------------------------------------------------------------------- /mbts/TransceiverRAD1/bladeRFDevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/TransceiverRAD1/bladeRFDevice.cpp -------------------------------------------------------------------------------- /mbts/TransceiverRAD1/bladeRFDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/TransceiverRAD1/bladeRFDevice.h -------------------------------------------------------------------------------- /mbts/TransceiverRAD1/burn-rnrad1-eeprom.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/TransceiverRAD1/burn-rnrad1-eeprom.sh -------------------------------------------------------------------------------- /mbts/TransceiverRAD1/bytesex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/TransceiverRAD1/bytesex.h -------------------------------------------------------------------------------- /mbts/TransceiverRAD1/commands.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/TransceiverRAD1/commands.h -------------------------------------------------------------------------------- /mbts/TransceiverRAD1/ezusb.ihx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/TransceiverRAD1/ezusb.ihx -------------------------------------------------------------------------------- /mbts/TransceiverRAD1/firmware.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/TransceiverRAD1/firmware.img -------------------------------------------------------------------------------- /mbts/TransceiverRAD1/fpga.rbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/TransceiverRAD1/fpga.rbf -------------------------------------------------------------------------------- /mbts/TransceiverRAD1/fpga_regs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/TransceiverRAD1/fpga_regs.h -------------------------------------------------------------------------------- /mbts/TransceiverRAD1/fusb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/TransceiverRAD1/fusb.cpp -------------------------------------------------------------------------------- /mbts/TransceiverRAD1/fusb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/TransceiverRAD1/fusb.h -------------------------------------------------------------------------------- /mbts/TransceiverRAD1/hostedx115.rbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/TransceiverRAD1/hostedx115.rbf -------------------------------------------------------------------------------- /mbts/TransceiverRAD1/hostedx40.rbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/TransceiverRAD1/hostedx40.rbf -------------------------------------------------------------------------------- /mbts/TransceiverRAD1/i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/TransceiverRAD1/i2c.h -------------------------------------------------------------------------------- /mbts/TransceiverRAD1/ids.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/TransceiverRAD1/ids.h -------------------------------------------------------------------------------- /mbts/TransceiverRAD1/inband-signaling-usb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/TransceiverRAD1/inband-signaling-usb -------------------------------------------------------------------------------- /mbts/TransceiverRAD1/interfaces.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/TransceiverRAD1/interfaces.h -------------------------------------------------------------------------------- /mbts/TransceiverRAD1/pulseApproximate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/TransceiverRAD1/pulseApproximate.m -------------------------------------------------------------------------------- /mbts/TransceiverRAD1/radioDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/TransceiverRAD1/radioDevice.h -------------------------------------------------------------------------------- /mbts/TransceiverRAD1/radioInterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/TransceiverRAD1/radioInterface.cpp -------------------------------------------------------------------------------- /mbts/TransceiverRAD1/radioInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/TransceiverRAD1/radioInterface.h -------------------------------------------------------------------------------- /mbts/TransceiverRAD1/rnrad1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/TransceiverRAD1/rnrad1.h -------------------------------------------------------------------------------- /mbts/TransceiverRAD1/rnrad1Core.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/TransceiverRAD1/rnrad1Core.cpp -------------------------------------------------------------------------------- /mbts/TransceiverRAD1/rnrad1Core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/TransceiverRAD1/rnrad1Core.h -------------------------------------------------------------------------------- /mbts/TransceiverRAD1/rnrad1Rx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/TransceiverRAD1/rnrad1Rx.cpp -------------------------------------------------------------------------------- /mbts/TransceiverRAD1/rnrad1Tx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/TransceiverRAD1/rnrad1Tx.cpp -------------------------------------------------------------------------------- /mbts/TransceiverRAD1/runTransceiver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/TransceiverRAD1/runTransceiver.cpp -------------------------------------------------------------------------------- /mbts/TransceiverRAD1/sigProcLib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/TransceiverRAD1/sigProcLib.cpp -------------------------------------------------------------------------------- /mbts/TransceiverRAD1/sigProcLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/TransceiverRAD1/sigProcLib.h -------------------------------------------------------------------------------- /mbts/TransceiverRAD1/sigProcLibTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/TransceiverRAD1/sigProcLibTest.cpp -------------------------------------------------------------------------------- /mbts/TransceiverRAD1/spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/TransceiverRAD1/spi.h -------------------------------------------------------------------------------- /mbts/apps/GetConfigurationKeys.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/apps/GetConfigurationKeys.cpp -------------------------------------------------------------------------------- /mbts/apps/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/apps/Makefile.in -------------------------------------------------------------------------------- /mbts/apps/OpenBTS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/apps/OpenBTS.cpp -------------------------------------------------------------------------------- /mbts/ctags.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/ctags.sh -------------------------------------------------------------------------------- /mbts/doxconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/doxconfig -------------------------------------------------------------------------------- /mbts/sqlite3/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/sqlite3/Makefile.in -------------------------------------------------------------------------------- /mbts/sqlite3/sqlite3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/sqlite3/sqlite3.c -------------------------------------------------------------------------------- /mbts/sqlite3/sqlite3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/sqlite3/sqlite3.h -------------------------------------------------------------------------------- /mbts/sqlite3/sqlite3ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/mbts/sqlite3/sqlite3ext.h -------------------------------------------------------------------------------- /nib/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/nib/Makefile.in -------------------------------------------------------------------------------- /nib/auth/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/nib/auth/Makefile.in -------------------------------------------------------------------------------- /nib/auth/do_comp128.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/nib/auth/do_comp128.c -------------------------------------------------------------------------------- /nib/auth/gsm_auth.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/nib/auth/gsm_auth.sh -------------------------------------------------------------------------------- /nib/auth/milenage/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/nib/auth/milenage/main.c -------------------------------------------------------------------------------- /nib/auth/milenage/milenage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/nib/auth/milenage/milenage.c -------------------------------------------------------------------------------- /nib/auth/milenage/milenage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/nib/auth/milenage/milenage.h -------------------------------------------------------------------------------- /nib/auth/milenage/rijndael.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/nib/auth/milenage/rijndael.c -------------------------------------------------------------------------------- /nib/auth/milenage/rijndael.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/nib/auth/milenage/rijndael.h -------------------------------------------------------------------------------- /nib/auth/test_crypto.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/nib/auth/test_crypto.sh -------------------------------------------------------------------------------- /nib/custom_sms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/nib/custom_sms.js -------------------------------------------------------------------------------- /nib/echo.au: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/nib/echo.au -------------------------------------------------------------------------------- /nib/nib.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/nib/nib.js -------------------------------------------------------------------------------- /nib/subscribers.conf.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/nib/subscribers.conf.sample -------------------------------------------------------------------------------- /nib/web/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/nib/web/.htaccess -------------------------------------------------------------------------------- /nib/web/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/nib/web/README -------------------------------------------------------------------------------- /nib/web/ansql/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/nib/web/ansql/COPYING -------------------------------------------------------------------------------- /nib/web/ansql/ansql_tests/runTest_JsObjFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/nib/web/ansql/ansql_tests/runTest_JsObjFile.php -------------------------------------------------------------------------------- /nib/web/ansql/ansql_tests/test_js1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/nib/web/ansql/ansql_tests/test_js1.js -------------------------------------------------------------------------------- /nib/web/ansql/base_classes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/nib/web/ansql/base_classes.php -------------------------------------------------------------------------------- /nib/web/ansql/config.php.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/nib/web/ansql/config.php.sample -------------------------------------------------------------------------------- /nib/web/ansql/debug.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/nib/web/ansql/debug.php -------------------------------------------------------------------------------- /nib/web/ansql/debug_all.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/nib/web/ansql/debug_all.php -------------------------------------------------------------------------------- /nib/web/ansql/default_classes/actionlog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/nib/web/ansql/default_classes/actionlog.php -------------------------------------------------------------------------------- /nib/web/ansql/force_update.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/nib/web/ansql/force_update.php -------------------------------------------------------------------------------- /nib/web/ansql/framework.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/nib/web/ansql/framework.php -------------------------------------------------------------------------------- /nib/web/ansql/javascript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/nib/web/ansql/javascript.js -------------------------------------------------------------------------------- /nib/web/ansql/lib.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/nib/web/ansql/lib.php -------------------------------------------------------------------------------- /nib/web/ansql/lib_files.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/nib/web/ansql/lib_files.php -------------------------------------------------------------------------------- /nib/web/ansql/lib_json_requests.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/nib/web/ansql/lib_json_requests.php -------------------------------------------------------------------------------- /nib/web/ansql/set_debug.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/nib/web/ansql/set_debug.php -------------------------------------------------------------------------------- /nib/web/ansql/socketconn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/nib/web/ansql/socketconn.php -------------------------------------------------------------------------------- /nib/web/ansql/use_json_requests.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/nib/web/ansql/use_json_requests.php -------------------------------------------------------------------------------- /nib/web/config.php: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /nib/web/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/nib/web/css/main.css -------------------------------------------------------------------------------- /nib/web/custom_sms.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/nib/web/custom_sms.php -------------------------------------------------------------------------------- /nib/web/defaults.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/nib/web/defaults.php -------------------------------------------------------------------------------- /nib/web/download.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/nib/web/download.php -------------------------------------------------------------------------------- /nib/web/images/advanced.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/nib/web/images/advanced.jpg -------------------------------------------------------------------------------- /nib/web/images/basic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/nib/web/images/basic.jpg -------------------------------------------------------------------------------- /nib/web/images/question.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/nib/web/images/question.jpg -------------------------------------------------------------------------------- /nib/web/images/sim_programmer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/nib/web/images/sim_programmer.png -------------------------------------------------------------------------------- /nib/web/images/yatebts_nib_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/nib/web/images/yatebts_nib_logo.png -------------------------------------------------------------------------------- /nib/web/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/nib/web/index.php -------------------------------------------------------------------------------- /nib/web/javascript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/nib/web/javascript.js -------------------------------------------------------------------------------- /nib/web/lib/lib_proj.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/nib/web/lib/lib_proj.php -------------------------------------------------------------------------------- /nib/web/lib/menu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/nib/web/lib/menu.php -------------------------------------------------------------------------------- /nib/web/main.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/nib/web/main.php -------------------------------------------------------------------------------- /nib/web/modules/default/bts_configuration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/nib/web/modules/default/bts_configuration.php -------------------------------------------------------------------------------- /nib/web/modules/default/outgoing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/nib/web/modules/default/outgoing.php -------------------------------------------------------------------------------- /nib/web/modules/default/subscribers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/nib/web/modules/default/subscribers.php -------------------------------------------------------------------------------- /nib/web/structure.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/nib/web/structure.php -------------------------------------------------------------------------------- /nib/web/ybts/check_validity_fields_ybts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/nib/web/ybts/check_validity_fields_ybts.php -------------------------------------------------------------------------------- /nib/web/ybts/create_radio_band_select_array.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/nib/web/ybts/create_radio_band_select_array.php -------------------------------------------------------------------------------- /nib/web/ybts/lib_ybts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/nib/web/ybts/lib_ybts.php -------------------------------------------------------------------------------- /nib/web/ybts/test/test_ybts_fields_validity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/nib/web/ybts/test/test_ybts_fields_validity.php -------------------------------------------------------------------------------- /nib/web/ybts/ybts_fields.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/nib/web/ybts/ybts_fields.php -------------------------------------------------------------------------------- /nib/web/ybts/ybts_menu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/nib/web/ybts/ybts_menu.php -------------------------------------------------------------------------------- /nib/welcome.au: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/nib/welcome.au -------------------------------------------------------------------------------- /nib/welcome.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/nib/welcome.js -------------------------------------------------------------------------------- /revision.txt: -------------------------------------------------------------------------------- 1 | 488 2 | -------------------------------------------------------------------------------- /roaming/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/roaming/Makefile.in -------------------------------------------------------------------------------- /roaming/handover.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/roaming/handover.js -------------------------------------------------------------------------------- /roaming/lib_str_util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/roaming/lib_str_util.js -------------------------------------------------------------------------------- /roaming/roaming.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/roaming/roaming.js -------------------------------------------------------------------------------- /ussd_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/ussd_test.js -------------------------------------------------------------------------------- /yate-bts.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/yate-bts.spec -------------------------------------------------------------------------------- /yate-bts.spec.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/yate-bts.spec.in -------------------------------------------------------------------------------- /ybts.conf.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/ybts.conf.sample -------------------------------------------------------------------------------- /ybts.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/ybts.cpp -------------------------------------------------------------------------------- /ybts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctxis/yate-bts/HEAD/ybts.h --------------------------------------------------------------------------------