diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2004-06-13 19:56:52 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2004-06-13 19:56:52 +0000 |
commit | ba0f9ff3bac5205687f172d9e9a846b42ce34d3d (patch) | |
tree | 0ddd81bca3c26356893ddfcbce8e4a1e9afd6570 /src/include/utils/builtins.h | |
parent | 88961fc45d5b4795efb99bfbae5f3673352cdb76 (diff) | |
download | postgresql-ba0f9ff3bac5205687f172d9e9a846b42ce34d3d.tar.gz postgresql-ba0f9ff3bac5205687f172d9e9a846b42ce34d3d.zip |
Code review for recently-added network functions. Get it to work when
log_hostname is enabled, clean up documentation.
Diffstat (limited to 'src/include/utils/builtins.h')
-rw-r--r-- | src/include/utils/builtins.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/include/utils/builtins.h b/src/include/utils/builtins.h index 1fc26e69a1f..6516c81d52e 100644 --- a/src/include/utils/builtins.h +++ b/src/include/utils/builtins.h @@ -7,7 +7,7 @@ * Portions Copyright (c) 1996-2003, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $PostgreSQL: pgsql/src/include/utils/builtins.h,v 1.241 2004/06/02 21:29:29 momjian Exp $ + * $PostgreSQL: pgsql/src/include/utils/builtins.h,v 1.242 2004/06/13 19:56:52 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -649,10 +649,6 @@ extern int inet_net_pton(int af, const char *src, void *dst, size_t size); /* network.c */ -extern Datum inet_client_addr(PG_FUNCTION_ARGS); -extern Datum inet_client_port(PG_FUNCTION_ARGS); -extern Datum inet_server_addr(PG_FUNCTION_ARGS); -extern Datum inet_server_port(PG_FUNCTION_ARGS); extern Datum inet_in(PG_FUNCTION_ARGS); extern Datum inet_out(PG_FUNCTION_ARGS); extern Datum inet_recv(PG_FUNCTION_ARGS); @@ -687,6 +683,10 @@ extern Datum text_inet(PG_FUNCTION_ARGS); extern Datum inet_set_masklen(PG_FUNCTION_ARGS); extern Datum network_scan_first(Datum in); extern Datum network_scan_last(Datum in); +extern Datum inet_client_addr(PG_FUNCTION_ARGS); +extern Datum inet_client_port(PG_FUNCTION_ARGS); +extern Datum inet_server_addr(PG_FUNCTION_ARGS); +extern Datum inet_server_port(PG_FUNCTION_ARGS); /* mac.c */ extern Datum macaddr_in(PG_FUNCTION_ARGS); |