summaryrefslogtreecommitdiffstats
path: root/include/internal.h
Commit message (Collapse)AuthorAgeFilesLines
* hsl: BTS supportPablo Neira Ayuso2011-07-081-0/+4
| | | | | | This patch adds the BTS support for the hsl driver. It includes two examples under the tests/ directory.
* include: remove IPA_NODE and E1INP_NODE definition from internal.hPablo Neira Ayuso2011-07-051-4/+0Star
| | | | They should be defined in osmocom/vty/command.h in libosmocore.
* src: add e1_input_vty.c to libosmo-abisPablo Neira Ayuso2011-07-051-0/+1
| | | | | This file provides the VTY interface for E1 lines, I have moved it to libosmo-abis since it belongs here.
* include: remove unused ipaccess_read_msg definition from internal.hPablo Neira Ayuso2011-07-021-2/+1Star
| | | | This was used by hsl driver but not anymore.
* ipa-proxy: add A-bis over IP generic proxy commands for VTYPablo Neira Ayuso2011-06-231-0/+3
| | | | | | | | | | | | | | | | | | | | | | | This patch adds VTY commands to route IPA flows. The following example allows to add a new route: $ tests/./ipa_proxy_test & <0000> ipa_proxy_test.c:74 entering main loop $ telnet localhost 4260 ipa-proxy-test> enable ipa-proxy-test# ipa instance input-oml bind 127.0.0.1 tcp port 8888 ipa-proxy-test# ipa instance output-oml connect 127.0.0.1 tcp port 3002 ipa-proxy-test# ipa route instance input-oml streamid 0xfe instance output-oml streamid 0xfe ipa-proxy-test# ipa instance input-rsl bind 127.0.0.1 tcp port 8889 ipa-proxy-test# ipa instance output-rsl connect 127.0.0.1 tcp port 3003 ipa-proxy-test# ipa route instance input-rsl streamid 0xfe instance output-rsl streamid 0xfe I'm using this to initially test this code [*]. [*] note that this requires a minor hackish patch for the src/input/ipaccess.c driver which changes the default OML and RSL ports to listen in 8888 and 8889 instead of the default ports, thus, I can initially test everything from the localhost.
* include: remove internal definition that are now in libosmocorePablo Neira Ayuso2011-06-091-57/+0Star
| | | | | Still in one separate patch for libosmocore, but they may become part of mainline soon.
* include: document functions required by hsl driverPablo Neira Ayuso2011-06-071-4/+5
| | | | | | This patch is a minor cleanup for internal.h, it confirms that a couple of functions in the ipaccess driver are used by hsl, but not exported further.
* include: remove superfluous definition from internal.hPablo Neira Ayuso2011-06-071-34/+0Star
| | | | | | | | Get rid of definitions that we no longer need. And move trau_frame_idle() definition where it really belongs to. Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
* e1input: log_set_context(...) should be called from the applicationPablo Neira Ayuso2011-06-071-3/+0Star
| | | | Remove this line, it should be called from the application.
* src: add libosmo_abis_init(void *ctx) to set the talloc contextPablo Neira Ayuso2011-06-071-0/+6
| | | | | This function is called during initialization, so we can set what's the talloc context for the application and the library.
* initial commit of libosmo-abisPablo Neira Ayuso2011-06-051-0/+102
still many things to get fixed