aboutsummaryrefslogtreecommitdiffstats
path: root/openbsc/src/nat/bsc_nat_vty.c
diff options
context:
space:
mode:
authorHolger Hans Peter Freyther <zecke@selfish.org>2010-03-26 07:10:22 +0100
committerHolger Hans Peter Freyther <zecke@selfish.org>2010-03-26 07:10:22 +0100
commitcbe77e165785977a664e0ee8c1c5e229f8bbe402 (patch)
tree34d936686e26ab8d30f7f76a37a53a6e0f00c55c /openbsc/src/nat/bsc_nat_vty.c
parent3cedc4738fa862352e34db9863991a6efb4ad01c (diff)
nat: Start using a write_queue for the BSC connection
We are still writing to the BSC directly and don't make real use of this feature right now but we will need to do it.
Diffstat (limited to 'openbsc/src/nat/bsc_nat_vty.c')
-rw-r--r--openbsc/src/nat/bsc_nat_vty.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/openbsc/src/nat/bsc_nat_vty.c b/openbsc/src/nat/bsc_nat_vty.c
index 5430670c9..695903775 100644
--- a/openbsc/src/nat/bsc_nat_vty.c
+++ b/openbsc/src/nat/bsc_nat_vty.c
@@ -89,7 +89,7 @@ DEFUN(show_bsc, show_bsc_cmd, "show connections bsc",
struct bsc_connection *con;
llist_for_each_entry(con, &_nat->bsc_connections, list_entry) {
vty_out(vty, "BSC lac: %d auth: %d fd: %d%s",
- con->lac, con->authenticated, con->bsc_fd.fd, VTY_NEWLINE);
+ con->lac, con->authenticated, con->write_queue.bfd.fd, VTY_NEWLINE);
}
return CMD_SUCCESS;