Обсуждение: pgsql: Add GUC variables to control keep-alive times for idle, interval,

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

pgsql: Add GUC variables to control keep-alive times for idle, interval,

От
momjian@svr1.postgresql.org (Bruce Momjian)
Дата:
Log Message:
-----------
Add GUC variables to control keep-alive times for idle, interval, and
count.

Oliver Jowett

Modified Files:
--------------
    pgsql/doc/src/sgml:
        runtime.sgml (r1.339 -> r1.340)
        (http://developer.postgresql.org/cvsweb.cgi/pgsql/doc/src/sgml/runtime.sgml.diff?r1=1.339&r2=1.340)
    pgsql/src/backend/libpq:
        pqcomm.c (r1.176 -> r1.177)
        (http://developer.postgresql.org/cvsweb.cgi/pgsql/src/backend/libpq/pqcomm.c.diff?r1=1.176&r2=1.177)
    pgsql/src/backend/utils/misc:
        guc.c (r1.279 -> r1.280)
        (http://developer.postgresql.org/cvsweb.cgi/pgsql/src/backend/utils/misc/guc.c.diff?r1=1.279&r2=1.280)
        postgresql.conf.sample (r1.154 -> r1.155)

(http://developer.postgresql.org/cvsweb.cgi/pgsql/src/backend/utils/misc/postgresql.conf.sample.diff?r1=1.154&r2=1.155)
    pgsql/src/bin/psql:
        tab-complete.c (r1.135 -> r1.136)
        (http://developer.postgresql.org/cvsweb.cgi/pgsql/src/bin/psql/tab-complete.c.diff?r1=1.135&r2=1.136)
    pgsql/src/include/libpq:
        libpq-be.h (r1.49 -> r1.50)
        (http://developer.postgresql.org/cvsweb.cgi/pgsql/src/include/libpq/libpq-be.h.diff?r1=1.49&r2=1.50)
    pgsql/src/include/utils:
        guc.h (r1.61 -> r1.62)
        (http://developer.postgresql.org/cvsweb.cgi/pgsql/src/include/utils/guc.h.diff?r1=1.61&r2=1.62)

Re: pgsql: Add GUC variables to control keep-alive times for idle, interval,

От
"Rocco Altier"
Дата:
This broke the build on AIX.

AIX does not have SOL_TCP as a defined symbol in any of the system
header files.

    -rocco

> -----Original Message-----
> From: pgsql-committers-owner@postgresql.org
> [mailto:pgsql-committers-owner@postgresql.org] On Behalf Of
> Bruce Momjian
> Sent: Saturday, July 30, 2005 11:17 AM
> To: pgsql-committers@postgresql.org
> Subject: [COMMITTERS] pgsql: Add GUC variables to control
> keep-alive times for idle, interval,
>
>
> Log Message:
> -----------
> Add GUC variables to control keep-alive times for idle, interval, and
> count.
>
> Oliver Jowett
>
> Modified Files:
> --------------
>     pgsql/doc/src/sgml:
>         runtime.sgml (r1.339 -> r1.340)
>
> (http://developer.postgresql.org/cvsweb.cgi/pgsql/doc/src/sgml
/runtime.sgml.diff?r1=1.339&r2=1.340)
    pgsql/src/backend/libpq:
        pqcomm.c (r1.176 -> r1.177)

(http://developer.postgresql.org/cvsweb.cgi/pgsql/src/backend/libpq/pqco
mm.c.diff?r1=1.176&r2=1.177)
    pgsql/src/backend/utils/misc:
        guc.c (r1.279 -> r1.280)

(http://developer.postgresql.org/cvsweb.cgi/pgsql/src/backend/utils/misc
/guc.c.diff?r1=1.279&r2=1.280)
        postgresql.conf.sample (r1.154 -> r1.155)

(http://developer.postgresql.org/cvsweb.cgi/pgsql/src/backend/utils/misc
/postgresql.conf.sample.diff?r1=1.154&r2=1.155)
    pgsql/src/bin/psql:
        tab-complete.c (r1.135 -> r1.136)

(http://developer.postgresql.org/cvsweb.cgi/pgsql/src/bin/psql/tab-compl
ete.c.diff?r1=1.135&r2=1.136)
    pgsql/src/include/libpq:
        libpq-be.h (r1.49 -> r1.50)

(http://developer.postgresql.org/cvsweb.cgi/pgsql/src/include/libpq/libp
q-be.h.diff?r1=1.49&r2=1.50)
    pgsql/src/include/utils:
        guc.h (r1.61 -> r1.62)

(http://developer.postgresql.org/cvsweb.cgi/pgsql/src/include/utils/guc.
h.diff?r1=1.61&r2=1.62)

---------------------------(end of broadcast)---------------------------
TIP 3: Have you checked our extensive FAQ?

               http://www.postgresql.org/docs/faq

Re: pgsql: Add GUC variables to control keep-alive times for idle, interval,

От
Tom Lane
Дата:
"Rocco Altier" <RoccoA@Routescape.com> writes:
> AIX does not have SOL_TCP as a defined symbol in any of the system
> header files.

Seems a tad odd that it would have all three TCP_xxx symbols and not any
way to use them.  Perhaps there's something besides SOL_TCP?

            regards, tom lane

Re: pgsql: Add GUC variables to control keep-alive times for idle, interval,

От
Tom Lane
Дата:
Actually, both the Single Unix Specification and the HPUX man pages are
pretty definite that the correct spelling of the parameter to getsockopt
is "IPPROTO_TCP"; which in fact is what we are using in existing calls.
This SOL_TCP thing is simply wrong.

            regards, tom lane