diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2002-08-29 03:22:01 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2002-08-29 03:22:01 +0000 |
commit | 5241a6259ff0a4a12d7659b25310f0987b51f211 (patch) | |
tree | c794a5e5ec6fc1dd134b46d94e9acf2dabd4b02d /src/include/libpq/libpq-be.h | |
parent | 8a24a55c8189debb779ac99f47c7054d6f9d8408 (diff) | |
download | postgresql-5241a6259ff0a4a12d7659b25310f0987b51f211.tar.gz postgresql-5241a6259ff0a4a12d7659b25310f0987b51f211.zip |
Remove support for version-0 FE/BE protocol, per pghackers discussion.
This breaks support for 6.2 or older client libraries.
Diffstat (limited to 'src/include/libpq/libpq-be.h')
-rw-r--r-- | src/include/libpq/libpq-be.h | 13 |
1 files changed, 2 insertions, 11 deletions
diff --git a/src/include/libpq/libpq-be.h b/src/include/libpq/libpq-be.h index 1a2382026c5..e9d906d06a8 100644 --- a/src/include/libpq/libpq-be.h +++ b/src/include/libpq/libpq-be.h @@ -11,7 +11,7 @@ * Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $Id: libpq-be.h,v 1.33 2002/08/18 03:03:26 momjian Exp $ + * $Id: libpq-be.h,v 1.34 2002/08/29 03:22:01 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -29,17 +29,8 @@ #endif -/* Protocol v0 password packet. */ - -typedef struct PasswordPacketV0 -{ - uint32 unused; - char data[288]; /* User and password as strings. */ -} PasswordPacketV0; - - /* - * This is used by the postmaster in its communication with frontends. It is + * This is used by the postmaster in its communication with frontends. It * contains all state information needed during this communication before the * backend is run. */ |