This is the mail archive of the ecos-discuss@sources.redhat.com mailing list for the eCos project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Re: problems with MBUFs (TCP/IP stack)


On Mon, Jul 10, 2000 at 07:10:11PM +0200, Marco Monguzzi wrote:

> I would appreciate whether you could provide me with you test programs.
> I will try them on my target. 

The eCos application is written for our custom board, and won't
run on your target.  But, I can't see that it's doing anything
particulary odd.  It's basically something like:

  while (1)
   {
   accept()
   while (1)
     {
     select()
     n = read()
     if (n<=0)
       {
       close()
       break;
       }
     else
       {
       // handle data
       }
     }
   }
   

> The porting is distributed with 2.1 release version by goahead software.

Great!  Somebody here was looking at goahead sources a while
ago, but they must not have had a new enough version.

-- 
Grant Edwards
grante@visi.com

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]