예제 #1
0
파일: ctrl2sse.py 프로젝트: osmocom/openbsc
	def post(self):
		bsc_control.set_var(self.skt, tornado.escape.native_str(self.get_argument("variable")), tornado.escape.native_str(self.get_argument("value")))
		super(SetCtrl, self).post()
예제 #2
0
파일: ctrl2sse.py 프로젝트: ymy0104/openbsc
 def post(self):
     bsc_control.set_var(
         self.skt, tornado.escape.native_str(self.get_argument("variable")),
         tornado.escape.native_str(self.get_argument("value")))
     super(SetCtrl, self).post()
예제 #3
0
파일: ctrl2sse.py 프로젝트: osmocom/openbsc
	def get(self, var, val):
		bsc_control.set_var(self.skt, tornado.escape.native_str(var), tornado.escape.native_str(val))
		super(SetCtrl, self).get(tornado.escape.native_str(var))
예제 #4
0
파일: ctrl2sse.py 프로젝트: ymy0104/openbsc
 def get(self, var, val):
     bsc_control.set_var(self.skt, tornado.escape.native_str(var),
                         tornado.escape.native_str(val))
     super(SetCtrl, self).get(tornado.escape.native_str(var))