Stefan Sperling has uploaded this change for review. (
https://gerrit.osmocom.org/9652
Change subject: tweak the default point codes used by sccp_demo_user
......................................................................
tweak the default point codes used by sccp_demo_user
commit 4dc9088cabedc40cb9072814237ad5926b12bd35 changed
default point code values from:
Client mode: 23 (local)
Server mode: 1 (local)
to
Client mode: -1 (local)
Server mode: 23 (local)
Change the defaults again:
Set local default point code to 23, and remote default point
code to 1. Use the same default values for both client and
server modes. This default behaviour is more consistent and
will be assumed by the upcoming SCCP test suite.
Change-Id: I7432e6fc2617e0fd77a098fcd7d14abc40db7229
Related: OS#2666
---
M examples/sccp_demo_user.c
1 file changed, 2 insertions(+), 2 deletions(-)
git pull ssh://gerrit.osmocom.org:29418/libosmo-sccp refs/changes/52/9652/1
diff --git a/examples/sccp_demo_user.c b/examples/sccp_demo_user.c
index f0b1a3e..b01574e 100644
--- a/examples/sccp_demo_user.c
+++ b/examples/sccp_demo_user.c
@@ -82,10 +82,10 @@
.version = 0,
};
-#define DEFAULT_LOCAL_PC -1
+#define DEFAULT_LOCAL_PC 23
#define DEFAULT_LOCAL_ADDRESS "127.0.0.2"
#define DEFAULT_LOCAL_PORT M3UA_PORT
-#define DEFAULT_REMOTE_PC 23
+#define DEFAULT_REMOTE_PC 1
#define DEFAULT_REMOTE_ADDRESS "127.0.0.1"
#define DEFAULT_REMOTE_PORT M3UA_PORT
--
To view, visit https://gerrit.osmocom.org/9652
To unsubscribe, or for help writing mail filters, visit
https://gerrit.osmocom.org/settings
Gerrit-Project: libosmo-sccp
Gerrit-Branch: master
Gerrit-MessageType: newchange
Gerrit-Change-Id: I7432e6fc2617e0fd77a098fcd7d14abc40db7229
Gerrit-Change-Number: 9652
Gerrit-PatchSet: 1
Gerrit-Owner: Stefan Sperling <[email protected]>