aboutsummaryrefslogtreecommitdiffstats
path: root/src/main_udt.c
AgeCommit message (Collapse)AuthorFilesLines
2011-02-10msc: The udt_relay could be implemented with the normal cellmgr nowHolger Hans Peter Freyther1-311/+0
Simplify the code and remove the standalone udt_relay application, the job can be done with cellmgr_ng. This will happen after we have settled for a new config file format.
2011-02-10bsc: Remove the global link_set pointer from the bscHolger Hans Peter Freyther1-5/+14
Start removing the static names for the linkset
2011-02-10bsc: Move the BSC<->MSC variables to a new struct.Holger Hans Peter Freyther1-16/+27
Move the MSC related information out of the bsc_data and update the code to use this BSC configuration. This is greatly cleaning up the code and in theory there might now be two BSC and two MSCs that one application can handle (minus the missing VTY config)
2011-01-22debug: Set the right debug area for the M2UA codeHolger Hans Peter Freyther1-0/+3
2011-01-22udp: Allow to create multiple links via UDPHolger Hans Peter Freyther1-0/+1
This is the easiest way to support multiple links over UDP. Specify the number you want and they will be initiated. All these links will run via the same UDP port.
2011-01-22vty: Classify the application that we run and provide different optionsHolger Hans Peter Freyther1-0/+1
The VTY interface is used for three different application and not every option will make sense for every app. In the long run we will split the vty interface but for now we just qualify the application.
2011-01-20isup: Allow to have a different OPC for ISUP messages.Holger Hans Peter Freyther1-0/+1
2011-01-20stp: Forward unhandled ISUP from one end to anotherHolger Hans Peter Freyther1-0/+5
2011-01-17mtp: Turn the MTPl2 link into a list of links.Holger Hans Peter Freyther1-1/+1
2011-01-17mtp: Make the link_data be a child of the link_setHolger Hans Peter Freyther1-8/+8
Change the order of the link and linkset. The link will be below the linkset. This change should make it more easy to introduce multiple linksets.
2011-01-17mtp: Propagate link and linkset failures in two stagesHolger Hans Peter Freyther1-15/+9
Handle a single link failure in links.c and if all the links have failed propagate it up. This is preparing the multiple links support.
2011-01-17mtp: Rename mtp_link to mtp_link_set as this is the linksetHolger Hans Peter Freyther1-6/+6
The link_udp is actually below the linkset. We need to get this right now and then can have multiple links.
2011-01-17msc: Remove the msc_clear_queue now that it is not neededHolger Hans Peter Freyther1-10/+0
2011-01-17mtp: Move the link code into a new file called links.Holger Hans Peter Freyther1-69/+2
2011-01-17misc: Remove the link_c7 dummy methodsHolger Hans Peter Freyther1-7/+0
2011-01-16license: Switch to the GNU AGPLv3 for this network serviceHolger Hans Peter Freyther1-7/+6
2011-01-01mtp: Allow to have a different POC for SCCPHolger Hans Peter Freyther1-0/+2
2010-12-08udt_relay: Remove the abort and return a NULL pointer after a messageHolger Hans Peter Freyther1-2/+2
2010-12-08udt_relay: Initialize the ni_ni as well hereHolger Hans Peter Freyther1-0/+5
2010-11-16udt: Add a forward_only to the bsc struct and use it for the msc_connHolger Hans Peter Freyther1-0/+1
Simply forward everything, no need for inspecting things.
2010-11-16udt_relay: Add a forked copy of main to just relay messagesHolger Hans Peter Freyther1-0/+363
Do not run any of the header rewriting for messages. This will simply relay SCCP friends to the MTP library. Some work on msc_conn.c is needed to avoid calling most of it.