Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit a7f6210

Browse files
committed
The PacketReceive/PacketSend routines aren't used anymore.
1 parent 215772a commit a7f6210

File tree

3 files changed

+3
-228
lines changed

3 files changed

+3
-228
lines changed

src/backend/libpq/Makefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# Makefile for libpq subsystem (backend half of libpq interface)
55
#
66
# IDENTIFICATION
7-
# $Header: /cvsroot/pgsql/src/backend/libpq/Makefile,v 1.26 2001/11/12 01:42:03 momjian Exp $
7+
# $Header: /cvsroot/pgsql/src/backend/libpq/Makefile,v 1.27 2001/11/12 04:19:15 tgl Exp $
88
#
99
#-------------------------------------------------------------------------
1010

@@ -16,7 +16,7 @@ include $(top_builddir)/src/Makefile.global
1616

1717
OBJS = be-fsstubs.o \
1818
auth.o crypt.o hba.o md5.o password.o \
19-
pqcomm.o pqformat.o pqpacket.o pqsignal.o util.o
19+
pqcomm.o pqformat.o pqsignal.o util.o
2020

2121

2222
all: check_md5 SUBSYS.o

src/backend/libpq/pqpacket.c

-215
This file was deleted.

src/include/libpq/libpq-be.h

+1-11
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
* Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
99
* Portions Copyright (c) 1994, Regents of the University of California
1010
*
11-
* $Id: libpq-be.h,v 1.25 2001/11/05 17:46:33 momjian Exp $
11+
* $Id: libpq-be.h,v 1.26 2001/11/12 04:19:15 tgl Exp $
1212
*
1313
*-------------------------------------------------------------------------
1414
*/
@@ -146,14 +146,4 @@ typedef struct Port
146146

147147
extern ProtocolVersion FrontendProtocol;
148148

149-
150-
/*
151-
* prototypes for functions in pqpacket.c
152-
*/
153-
void PacketReceiveSetup(Packet *pkt, PacketDoneProc iodone, void *arg);
154-
int PacketReceiveFragment(Port *port);
155-
void PacketSendSetup(Packet *pkt, int nbytes, PacketDoneProc iodone, void *arg);
156-
int PacketSendFragment(Port *port);
157-
void PacketSendError(Packet *pkt, char *errormsg);
158-
159149
#endif /* LIBPQ_BE_H */

0 commit comments

Comments
 (0)