Hi there !
I have the following problem using RPC. With rpcgen , I built a client
and a server. The client use a remote function and get a structure.
This structure is a linked one:
struct res
{
int x;
struct res *next;
The problem I have is that the function I use can send backQuote:}
a linked structure which can contain a "big" number of element.
This code works basically with minus than 1000 elements and start
to fail with more elements. I suspect a problem with the size of
the TPC (the used protocol) packets but ... nothing in the rpcgen
man pages mention such a limitation ...
If someone has an idea, please, let me know.
Thanks,
Christophe