Re: Adding and deleting routes in hurd ??

2011-11-14 Thread Samuel Thibault
harish badrinath, le Mon 14 Nov 2011 12:06:44 +0530, a écrit : > > Actually, I can't even find the struct ortentry definition, so I guess > > this is just oldie. > > Could you please elaborate on what needs to be done. Add RPC interfaces to pfinet to add routes. The code is there inside, in the l

Re: Adding and deleting routes in hurd ??

2011-11-13 Thread harish badrinath
On Sat, Nov 12, 2011 at 8:13 PM, Samuel Thibault wrote: > harish badrinath, le Fri 11 Nov 2011 17:47:50 +0530, a écrit : >> Is it possible to add and delete routing information in hurd .. > > Answering the actual underlying question (I didn't have the time to > do it before), no, I believe there i

Re: Adding and deleting routes in hurd ??

2011-11-12 Thread Samuel Thibault
harish badrinath, le Fri 11 Nov 2011 17:47:50 +0530, a écrit : > Is it possible to add and delete routing information in hurd .. Answering the actual underlying question (I didn't have the time to do it before), no, I believe there is currently no way to add/delete routing information in Hurd, jus

Re: Adding and deleting routes in hurd ??

2011-11-12 Thread Samuel Thibault
harish badrinath, le Sat 12 Nov 2011 16:20:28 +0530, a écrit : > On Fri, Nov 11, 2011 at 8:46 PM, Samuel Thibault wrote: > > harish badrinath, le Fri 11 Nov 2011 17:47:50 +0530, a écrit : > >> error: '_IOT_ortentry' undeclared (first use in this function) > > > > See corresponding information in >

Re: Adding and deleting routes in hurd ??

2011-11-12 Thread harish badrinath
Hello, On Fri, Nov 11, 2011 at 8:46 PM, Samuel Thibault wrote: > harish badrinath, le Fri 11 Nov 2011 17:47:50 +0530, a écrit : >> error: '_IOT_ortentry' undeclared (first use in this function) > > See corresponding information in > > http://www.gnu.org/software/hurd/hurd/porting/guidelines I am

Re: Adding and deleting routes in hurd ??

2011-11-11 Thread Samuel Thibault
harish badrinath, le Fri 11 Nov 2011 17:47:50 +0530, a écrit : > error: '_IOT_ortentry' undeclared (first use in this function) See corresponding information in http://www.gnu.org/software/hurd/hurd/porting/guidelines Samuel -- To UNSUBSCRIBE, email to debian-hurd-requ...@lists.debian.org wit

Re: Adding and deleting routes in hurd ??

2011-11-11 Thread Thomas Bushnell, BSG
A hurd ioctl has to also have something which documents the exact structure layout in a way that the library can use to reformat it into a Mach message. That's what the _IOT_foo thing would be. Since it's missing, the _IOW call fails. Some ioctls can't be represented, for various reasons, and requ

Adding and deleting routes in hurd ??

2011-11-11 Thread harish badrinath
Hello, Is it possible to add and delete routing information in hurd .. In i noticed the following snippet #if 0 #define SIOCADDRT _IOW('r', 10, struct ortentry) /* add route */ #define SIOCDELRT _IOW('r', 11, struct ortentry) /* delete route */ #endif So i copied and pasted thes