public inbox for ecos-discuss@sourceware.org
 help / color / mirror / Atom feed
From: Sebastien Couret <sebastien.couret@elios-informatique.fr>
To: ecos-discuss@sources.redhat.com
Subject: [ECOS] How to print IP routing table with eCOS ?
Date: Wed, 05 Nov 2003 16:00:00 -0000	[thread overview]
Message-ID: <E1AHR1q-0002Wa-00@ECoSyst3m3> (raw)

Hello,

I.m trying to get the routing tables from the FreeBSD IP stack ported to eCOS.

The API show_network_tables() just stall my software and display nothing.

I.ve tried by the use of the sysctl() API (option checked in FreeBSD configuration) whith the following code :

int GetRoutes(void)
{
 int mib[6];
 size_t needed=0;		
 char *buf = NULL;
 char *next=NULL;
 char *lim = NULL;
 struct sockaddr *sa=NULL;
 struct rt_msghdr *rtm=NULL;

 mib[0] = CTL_NET;
 mib[1] = PF_ROUTE;
 mib[2] = 0;
 mib[3] = 0;
 mib[4] = NET_RT_DUMP;
 mib[5] = 0;
 if (sysctl(mib, 6, NULL, &needed, NULL, 0) < 0)	{
  LOG(LOG_ERR,"Route sysctl");
  return(-1);
 }
 LOG(LOG_INFO,.Free space needed : %d\n",needed);
 if (needed > 0) 
 {
  if ((buf = malloc(needed)) == 0)
  {
   LOG(LOG_ERR,"out of space (%i octets)\n",needed);
   return(-1);
  }
  if (sysctl(mib, 6, buf, &needed, NULL, 0) < 0)
  {
   LOG(LOG_ERR,"sysctl of routing table");
   return(-1);
  }
  lim  = buf + needed;
 } // fin du if needed

 LOG(LOG_INFO,"Routing tables\n");

 if (buf) 
 {
  LOG(LOG_INFO,"Here comes the routing table\n");
  for (next = buf; next < lim; next += rtm->rtm_msglen)
  {
   rtm = (struct rt_msghdr *)next;
   sa = (struct sockaddr *)(rtm + 1);
   if (sa->sa_family != AF_INET)
	 continue;
   LOG(LOG_INFO,"Here.s one route\n");
	//p_rtentry(rtm);
  }   free(buf);
 } 
 return(0);
}

This doesn.t work because sysctl always set needed to 0 even if routes have been added to the routing tables.
Someone got a clue ?

Thanks for your help.



-- 
Before posting, please read the FAQ: http://sources.redhat.com/fom/ecos
and search the list archive: http://sources.redhat.com/ml/ecos-discuss

             reply	other threads:[~2003-11-05 16:00 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2003-11-05 16:00 Sebastien Couret [this message]
2003-11-08 14:42 ` Andrew Lunn

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=E1AHR1q-0002Wa-00@ECoSyst3m3 \
    --to=sebastien.couret@elios-informatique.fr \
    --cc=ecos-discuss@sources.redhat.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).