Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
c5336a89
Commit
c5336a89
authored
Dec 01, 2003
by
Tom Lane
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
netmask() and hostmask() functions should return maximum-length masklen,
per gripe from Joe Sunday.
parent
3e5da0a8
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
17 deletions
+5
-17
src/backend/utils/adt/network.c
src/backend/utils/adt/network.c
+5
-17
No files found.
src/backend/utils/adt/network.c
View file @
c5336a89
/*
* PostgreSQL type definitions for the INET and CIDR types.
*
* $PostgreSQL: pgsql/src/backend/utils/adt/network.c,v 1.4
8 2003/11/29 19:51:59 pgsq
l Exp $
* $PostgreSQL: pgsql/src/backend/utils/adt/network.c,v 1.4
9 2003/12/01 18:50:19 tg
l Exp $
*
* Jon Postel RIP 16 Oct 1998
*/
...
...
@@ -315,8 +315,8 @@ inet_set_masklen(PG_FUNCTION_ARGS)
errmsg
(
"invalid mask length: %d"
,
bits
)));
/* clone the original data */
dst
=
(
inet
*
)
palloc
(
VAR
HDRSZ
+
sizeof
(
inet_struct
));
memcpy
(
dst
,
src
,
VAR
HDRSZ
+
sizeof
(
inet_struct
));
dst
=
(
inet
*
)
palloc
(
VAR
SIZE
(
src
));
memcpy
(
dst
,
src
,
VAR
SIZE
(
src
));
ip_bits
(
dst
)
=
bits
;
...
...
@@ -658,7 +658,6 @@ network_network(PG_FUNCTION_ARGS)
inet
*
dst
;
int
byte
;
int
bits
;
int
maxbytes
;
unsigned
char
mask
;
unsigned
char
*
a
,
*
b
;
...
...
@@ -666,11 +665,6 @@ network_network(PG_FUNCTION_ARGS)
/* make sure any unused bits are zeroed */
dst
=
(
inet
*
)
palloc0
(
VARHDRSZ
+
sizeof
(
inet_struct
));
if
(
ip_family
(
ip
)
==
PGSQL_AF_INET
)
maxbytes
=
4
;
else
maxbytes
=
16
;
bits
=
ip_bits
(
ip
);
a
=
ip_addr
(
ip
);
b
=
ip_addr
(
dst
);
...
...
@@ -710,18 +704,12 @@ network_netmask(PG_FUNCTION_ARGS)
inet
*
dst
;
int
byte
;
int
bits
;
int
maxbytes
;
unsigned
char
mask
;
unsigned
char
*
b
;
/* make sure any unused bits are zeroed */
dst
=
(
inet
*
)
palloc0
(
VARHDRSZ
+
sizeof
(
inet_struct
));
if
(
ip_family
(
ip
)
==
PGSQL_AF_INET
)
maxbytes
=
4
;
else
maxbytes
=
16
;
bits
=
ip_bits
(
ip
);
b
=
ip_addr
(
dst
);
...
...
@@ -744,7 +732,7 @@ network_netmask(PG_FUNCTION_ARGS)
}
ip_family
(
dst
)
=
ip_family
(
ip
);
ip_bits
(
dst
)
=
ip_bits
(
ip
);
ip_bits
(
dst
)
=
ip_
max
bits
(
ip
);
ip_type
(
dst
)
=
0
;
VARATT_SIZEP
(
dst
)
=
VARHDRSZ
+
((
char
*
)
ip_addr
(
dst
)
-
(
char
*
)
VARDATA
(
dst
))
...
...
@@ -794,7 +782,7 @@ network_hostmask(PG_FUNCTION_ARGS)
}
ip_family
(
dst
)
=
ip_family
(
ip
);
ip_bits
(
dst
)
=
ip_bits
(
ip
);
ip_bits
(
dst
)
=
ip_
max
bits
(
ip
);
ip_type
(
dst
)
=
0
;
VARATT_SIZEP
(
dst
)
=
VARHDRSZ
+
((
char
*
)
ip_addr
(
dst
)
-
(
char
*
)
VARDATA
(
dst
))
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment