Thread: New port no getaddrinfo_all()
Hi I am trying to port the front end of postgres to the Amiga OS4 platform. There isn't a getaddrinfo_all() function, does anyone know where I can get some code to simulate it?
Neil Dugan wrote: > Hi > I am trying to port the front end of postgres to the Amiga OS4 platform. > There isn't a getaddrinfo_all() function, does anyone know where I can > get some code to simulate it? That function is defined in backend/libpq/ip.c. -- Bruce Momjian | http://candle.pha.pa.us pgman@candle.pha.pa.us | (610) 359-1001 + If your life is a hard drive, | 13 Roberts Road + Christ can be your backup. | Newtown Square, Pennsylvania 19073
On Sun, 2005-01-23 at 19:18 -0500, Bruce Momjian wrote: > Neil Dugan wrote: > > Hi > > I am trying to port the front end of postgres to the Amiga OS4 platform. > > There isn't a getaddrinfo_all() function, does anyone know where I can > > get some code to simulate it? > > That function is defined in backend/libpq/ip.c. > Thanks for that, I don't know why my search didn't find it. I downloaded the source glibc and have found the source for 'getaddrinfo' hopefully this will solve my problem.