Re: [grpc-io] Re: Do we have any examples to use grpc in C

2021-05-04 Thread Ashique C K
Hi, By using this command* protoc --c_out=. foo.proto, *it will generate *foo.pb-c.c, foo.pb-c.h* fiiles. What is the command to generate *grpc *file too. For that we need grpc C plugin right ? >From where I can get that ? On Wednesday, January 8, 2020 at 3:10:39 PM UTC+5:30 qimi...@gmail.com

Re: [grpc-io] Re: Do we have any examples to use grpc in C

2020-01-08 Thread qiming315
Hi Ajay, I got a proble while trying to run the example, client code like this: for(i = 0; i < 1000; i ++) { foo__greeter__say_hello(...) } after running hundreds of times, the server crash , "doube free" . do you have any idea about this problem? Thanks a lot! On Thursday, April 13,

[grpc-io] Re: Do we have any examples to use grpc in C

2018-08-20 Thread Prashant Shubham
Can anyone guide how to write C wrapper class for grpc? On Wednesday, January 27, 2016 at 5:12:53 AM UTC+5:30, yyd...@gmail.com wrote: > > Hi guys, > > How to use grpc in C? > > From thread history, the suggestion is to use C++. Understood this, while > we need to use grpc in C as our

Re: [grpc-io] Re: Do we have any examples to use grpc in C

2017-10-31 Thread ajhai
Can you check the thread at https://github.com/Juniper/grpc-c/issues/19 ? What is the version of protobuf you have installed on your Mac? I haven't tried using nanopb. It was tried before though directly with grpc. Look at https://github.com/grpc/grpc/pull/7670 and

Re: [grpc-io] Re: Do we have any examples to use grpc in C

2017-10-30 Thread nikitanerkar235
Hi Ajay, I tried compiling the Juniper C implementation for gRPC but could not get through. I have posted the issue on github repository. Also I want to replace protoc-C by nanoPB to have a C implementation of the entire stack. Have you tried that? Are you known of any repository which has

Re: [grpc-io] Re: Do we have any examples to use grpc in C

2017-10-25 Thread ajhai
Hi Nikita, You can find the project at https://github.com/juniper/grpc-c. You will need gRPC v1.3.0 and protobuf 3. Look at README and examples/ for usage. Please note that this library is still pre alpha. Thanks, Ajay On Wednesday, October 25, 2017 at 5:07:27 AM UTC-7, nikitan...@gmail.com

Re: [grpc-io] Re: Do we have any examples to use grpc in C

2017-10-25 Thread nikitanerkar235
Hi Ajay, Could you please point me to the C implementation of gRPC? I am trying to compile the grpc implementation from github but it looks broken. Also pointer to the documentation which will cover the QuickStart and developer reference. Thanks in advance. Regards, Nikita On Thursday, 13

[grpc-io] Re: Do we have any examples to use grpc in C

2017-10-25 Thread nikitanerkar235
Hi Ajay, Could you please point me to the C implementation of gRPC? I am trying to compile the grpc implementation from github but it looks broken. Also pointer to the documentation which will cover the QuickStart and developer reference. Thanks in advance. Regards, Nikita On Wednesday, 27

Re: [grpc-io] Re: Do we have any examples to use grpc in C

2017-10-25 Thread nikitanerkar235
Hi Kostas, Could you please point me to the C implementation of gRPC? I am trying to compile the grpc implementation from github but it looks broken. Also pointer to the documentation which will cover the QuickStart and developer reference. Thank you in advance. On Thursday, 13 April 2017

Re: [grpc-io] Re: Do we have any examples to use grpc in C

2017-04-13 Thread Kostas
Hi Ajay, This is very good news, thanks for letting me know. Looking forward to trying the alpha code. Regards, Kostas On Wed, 12 Apr 2017 at 22:16, ajhai wrote: > Hi Kostas, > > I'm one of the developers of grpc-c. We will be pushing changes to grpc-c > hopefully

Re: [grpc-io] Re: Do we have any examples to use grpc in C

2017-04-12 Thread ajhai
Hi Kostas, I'm one of the developers of grpc-c. We will be pushing changes to grpc-c hopefully towards end of this month and they should bring this repo to alpha state where people can start trying it out easily. Thanks, Ajay On Wednesday, April 12, 2017 at 5:29:47 AM UTC-7, Kostas wrote: >

Re: [grpc-io] Re: Do we have any examples to use grpc in C

2017-04-11 Thread 'Craig Tiller' via grpc.io
Juniper has a library that might help you: https://github.com/juniper/grpc-c On Tue, Apr 11, 2017 at 10:02 AM wrote: > Hello, > > I was wondering if there is an update on this subject. Is it possible to > use gRPC with C? Thank you. > > Regards, > Kostas > > > On Tuesday,

[grpc-io] Re: Do we have any examples to use grpc in C

2017-04-11 Thread kpeletidis
Hello, I was wondering if there is an update on this subject. Is it possible to use gRPC with C? Thank you. Regards, Kostas On Tuesday, 26 January 2016 23:42:53 UTC, yyd...@gmail.com wrote: > > Hi guys, > > How to use grpc in C? > > From thread history, the suggestion is to use C++. Understood