Обсуждение: New port no getaddrinfo_all()

Поиск
Список
Период
Сортировка

New port no getaddrinfo_all()

От
Neil Dugan
Дата:
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?



Re: New port no getaddrinfo_all()

От
Bruce Momjian
Дата:
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

Re: New port no getaddrinfo_all()

От
Neil Dugan
Дата:
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.