Re: [Ryu-devel] launching a GRPC server within an ryu app

2017-05-21 Thread Yikai Lin
> On May 21, 2017, at 8:45 PM, Iwase Yusuke wrote: > > Hi, > > > On 2017年05月21日 08:01, Yikai Lin wrote: >> Hi all, >> >> I was trying to launch a GRPC server within an ryu app to talk to my >> on-switch client. The code for launching the server is as follows: >> >> server = grpc.server(futu

Re: [Ryu-devel] launching a GRPC server within an ryu app

2017-05-21 Thread Iwase Yusuke
Hi, On 2017年05月21日 08:01, Yikai Lin wrote: > Hi all, > > I was trying to launch a GRPC server within an ryu app to talk to my > on-switch client. The code for launching the server is as follows: > > server = grpc.server(futures.ThreadPoolExecutor(max_workers=10)) > xx_service_pb2_grpc.add_XXSe

Re: [Ryu-devel] packet fields extraction

2017-05-21 Thread Fujimoto Satoshi
Hi, Ashish At this time, ryu does not support S1AP. If you want to parse S1AP packets in ryu application, you need to implement a parser for S1AP. FYI, the list of protocols supported by ryu is here: http://ryu.readthedocs.io/en/latest/library_packet_ref.html#protocol-header-classes And the im