summaryrefslogtreecommitdiff
path: root/src/backend/utils/adt/network.c
Commit message (Expand)AuthorAgeFilesLines
* Revert the behavior of inet/cidr functions to not unpack the arguments.Heikki Linnakangas2011-12-121-49/+49
* Make DatumGetInetP() unpack inet datums with a 1-byte header, and addHeikki Linnakangas2011-11-081-1/+1
* Use clearer notation for getnameinfo() return handlingPeter Eisentraut2011-08-091-4/+4
* pgindent run before PG 9.1 beta 1.Bruce Momjian2011-04-101-30/+30
* Remove cvs keywords from all files.Magnus Hagander2010-09-201-1/+1
* Fix off-by-one bug in bitncmp(): When comparing a number of bits divisible byHeikki Linnakangas2009-10-081-2/+2
* 8.4 pgindent run, with new combined Linux/FreeBSD/MinGW typedef listBruce Momjian2009-06-111-31/+37
* Simplify and standardize conversions between TEXT datums and ordinary CTom Lane2008-03-251-32/+5
* pgindent run for 8.3.Bruce Momjian2007-11-151-5/+5
* Downgrade implicit casts to text to be assignment-only, except for the onesTom Lane2007-06-051-31/+6
* Temporary fix for the problem that pg_stat_activity, inet_client_addr(),Tom Lane2007-05-171-1/+34
* Support varlena fields with single-byte headers and unaligned storage.Tom Lane2007-04-061-54/+50
* Replace direct assignments to VARATT_SIZEP(x) with SET_VARSIZE(x, len).Tom Lane2007-02-271-25/+25
* Adjust network errmsg("result is out of range") message to be consistentBruce Momjian2007-01-021-3/+3
* pgindent run for 8.2.Bruce Momjian2006-10-041-48/+50
* Fix incorrect addition, subtraction, and overflow checking in newTom Lane2006-02-111-41/+66
* Add INET/CIDR operators: and, or, not, plus int8, minus int8, and inetBruce Momjian2006-02-111-1/+207
* Source code cleanup.Bruce Momjian2006-02-071-19/+19
* Suppress signed-vs-unsigned-char warning.Tom Lane2006-01-261-2/+2
* Clean up the INET-vs-CIDR situation. Get rid of the internal is_cidr flagTom Lane2006-01-261-79/+196
* Prototype fix for typo.Bruce Momjian2006-01-231-2/+2
* Use is_cidr in INET/CIDR structure, rather than the generic 'type'.Bruce Momjian2006-01-231-24/+24
* Cosmetic code cleanup: fix a bunch of places that used "return (expr);"Neil Conway2006-01-111-2/+2
* I have added these macros to c.h:Bruce Momjian2005-12-251-6/+6
* Clean up libpq's pollution of application namespace by renaming theTom Lane2005-10-171-17/+17
* Standard pgindent run for 8.1.Bruce Momjian2005-10-151-15/+13
* Do proper testing of CIDR bits against network mask, e.g. don't allow:Bruce Momjian2004-10-081-2/+2
* Pgindent run for 8.0.Bruce Momjian2004-08-291-50/+54
* Give inet/cidr datatypes their own hash function that ignores the inet vsTom Lane2004-06-131-4/+25
* Code review for recently-added network functions. Get it to work whenTom Lane2004-06-131-104/+145
* *) inet_(client|server)_(addr|port)() and necessary documentation forBruce Momjian2004-05-261-1/+108
* netmask() and hostmask() functions should return maximum-length masklen,Tom Lane2003-12-011-17/+5
* $Header: -> $PostgreSQL Changes ...PostgreSQL Daemon2003-11-291-1/+1
* More message editing, some suggested by Alvaro HerreraPeter Eisentraut2003-09-291-6/+6
* Message editing: remove gratuitous variations in message wording, standardizePeter Eisentraut2003-09-251-3/+3
* pgindent run.Bruce Momjian2003-08-041-117/+141
* inet_recv() wasn't IPv6-ready.Tom Lane2003-08-011-13/+10
* Error message editing in utils/adt. Again thanks to Joe Conway for doingTom Lane2003-07-271-20/+47
* Add ipv6 address parsing support to 'inet' and 'cidr' data types.Bruce Momjian2003-06-241-273/+335
* More binary I/O routines.Tom Lane2003-05-131-1/+97
* Fix compile warning.Tom Lane2003-03-211-3/+2
* Add hostmask() function:Bruce Momjian2003-03-211-1/+41
* Add new palloc0 call as merge of palloc and MemSet(0).Bruce Momjian2002-11-131-9/+5
* Back out use of palloc0 in place if palloc/MemSet. Seems constant lenBruce Momjian2002-11-111-5/+9
* Merge palloc()/MemSet(0) calls into a single palloc0() call.Bruce Momjian2002-11-101-9/+5
* Remove sys/types.h in files that include postgres.h, and hence c.h,Bruce Momjian2002-09-021-2/+1
* pgindent run on all C files. Java run to follow. initdb/regressionBruce Momjian2001-10-251-38/+37
* Fix confusion over static-ness of a subroutine.Tom Lane2001-08-271-2/+2
* Make inet/cidr << and <<= operators indexable. From Alex Pilosov <alex@pilos...Tom Lane2001-06-171-1/+29
* Attached is a patch adding following functions:Bruce Momjian2001-06-131-1/+47