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
93713250
Commit
93713250
authored
Nov 12, 2001
by
Tom Lane
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove a bunch more no-longer-used stuff in libpq-be.h.
parent
26e34c9b
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
80 deletions
+9
-80
src/backend/postmaster/postmaster.c
src/backend/postmaster/postmaster.c
+1
-2
src/include/libpq/libpq-be.h
src/include/libpq/libpq-be.h
+8
-78
No files found.
src/backend/postmaster/postmaster.c
View file @
93713250
...
...
@@ -37,7 +37,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/postmaster/postmaster.c,v 1.26
0 2001/11/11 02:09:05
tgl Exp $
* $Header: /cvsroot/pgsql/src/backend/postmaster/postmaster.c,v 1.26
1 2001/11/12 05:43:24
tgl Exp $
*
* NOTES
*
...
...
@@ -1305,7 +1305,6 @@ ConnCreate(int serverFd)
* using the same salt...
*/
RandomSalt
(
port
->
cryptSalt
,
port
->
md5Salt
);
port
->
pktInfo
.
state
=
Idle
;
}
return
port
;
...
...
src/include/libpq/libpq-be.h
View file @
93713250
/*-------------------------------------------------------------------------
*
* libpq_be.h
* This file contains definitions for structures and
* externs for functions used by the POSTGRES backend.
* This file contains definitions for structures and externs used
* by the postmaster during client authentication.
*
* Note that this is backend-internal and is NOT exported to clients.
* Structs that need to be client-visible are in pqcomm.h.
*
*
* Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
* $Id: libpq-be.h,v 1.2
6 2001/11/12 04:19:1
5 tgl Exp $
* $Id: libpq-be.h,v 1.2
7 2001/11/12 05:43:2
5 tgl Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -35,78 +38,6 @@ typedef struct PasswordPacketV0
}
PasswordPacketV0
;
/*
* Password packet. The length of the password can be changed without
* affecting anything.
*/
typedef
struct
PasswordPacket
{
char
passwd
[
100
];
/* The password. */
}
PasswordPacket
;
/* Error message packet. */
typedef
struct
ErrorMessagePacket
{
char
data
[
1
+
100
];
/* 'E' + the message. */
}
ErrorMessagePacket
;
/* Authentication request packet. */
typedef
struct
AuthRequestPacket
{
char
data
[
1
+
sizeof
(
AuthRequest
)
+
4
];
/* 'R' + the request +
* optional salt. */
}
AuthRequestPacket
;
/* These are used by the packet handling routines. */
typedef
enum
{
Idle
,
ReadingPacketLength
,
ReadingPacket
,
WritingPacket
}
PacketState
;
typedef
int
(
*
PacketDoneProc
)
(
void
*
arg
,
PacketLen
pktlen
,
void
*
pktdata
);
typedef
struct
Packet
{
PacketState
state
;
/* What's in progress. */
PacketLen
len
;
/* Actual length */
int
nrtodo
;
/* Bytes still to transfer */
char
*
ptr
;
/* Buffer pointer */
PacketDoneProc
iodone
;
/* I/O complete callback */
void
*
arg
;
/* Argument to callback */
/*
* We declare the data buffer as a union of the allowed packet types,
* mainly to ensure that enough space is allocated for the largest
* one.
*/
union
{
/* These are outgoing so have no packet length prepended. */
ErrorMessagePacket
em
;
AuthRequestPacket
ar
;
/* These are incoming and have a packet length prepended. */
StartupPacket
si
;
CancelRequestPacket
canc
;
PasswordPacketV0
pwv0
;
PasswordPacket
pw
;
}
pkt
;
}
Packet
;
/*
* This is used by the postmaster in its communication with frontends. It is
* contains all state information needed during this communication before the
...
...
@@ -116,9 +47,8 @@ typedef struct Packet
typedef
struct
Port
{
int
sock
;
/* File descriptor */
Packet
pktInfo
;
/* For the packet handlers */
SockAddr
laddr
;
/* local addr (us) */
SockAddr
raddr
;
/* remote addr (them) */
SockAddr
laddr
;
/* local addr (postmaster) */
SockAddr
raddr
;
/* remote addr (client) */
char
md5Salt
[
4
];
/* Password salt */
char
cryptSalt
[
2
];
/* Password salt */
...
...
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