aboutsummaryrefslogtreecommitdiffstats
path: root/openbsc/contrib/bsc_control.py
diff options
context:
space:
mode:
Diffstat (limited to 'openbsc/contrib/bsc_control.py')
-rwxr-xr-xopenbsc/contrib/bsc_control.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/openbsc/contrib/bsc_control.py b/openbsc/contrib/bsc_control.py
index 9dc01e3bf..f601ca3f5 100755
--- a/openbsc/contrib/bsc_control.py
+++ b/openbsc/contrib/bsc_control.py
@@ -85,14 +85,14 @@ if options.cmd_get:
parser.error("Get requires the var argument")
do_get(args[0], options.id, sock)
-data = sock.recv(1024)
+data = sock.recv(40960)
while (len(data)>0):
(answer, data) = remove_ipa_ctrl_header(data)
print "Got message:", answer
if options.monitor:
while (True):
- data = sock.recv(1024)
+ data = sock.recv(40960)
if len(data) == 0:
print "Connection is gone."
break