aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarc G. Fournier <scrappy@hub.org>1997-03-16 19:06:04 +0000
committerMarc G. Fournier <scrappy@hub.org>1997-03-16 19:06:04 +0000
commit5ea01d62eff19e8f226d5c1b255730b011e83c5f (patch)
tree74cbc109bf83e1d02b47fc9f24fd566c19913d7b
parent7cd394dc431050c5f10761418730a2f3d4bdd5f2 (diff)
downloadpostgresql-5ea01d62eff19e8f226d5c1b255730b011e83c5f.tar.gz
postgresql-5ea01d62eff19e8f226d5c1b255730b011e83c5f.zip
Don't forget the fe-connect.h include file
-rw-r--r--src/interfaces/libpq/fe-connect.h29
1 files changed, 29 insertions, 0 deletions
diff --git a/src/interfaces/libpq/fe-connect.h b/src/interfaces/libpq/fe-connect.h
new file mode 100644
index 00000000000..ffa746473d3
--- /dev/null
+++ b/src/interfaces/libpq/fe-connect.h
@@ -0,0 +1,29 @@
+/*-------------------------------------------------------------------------
+ *
+ * fe-connect.h
+ *
+ * Definitions related to setting up a connection to the backend
+ *
+ * Copyright (c) 1994, Regents of the University of California
+ *
+ * $Id: fe-connect.h,v 1.1 1997/03/16 19:06:04 scrappy Exp $
+ *
+ *-------------------------------------------------------------------------
+ */
+#ifndef FE_CONNECT_H
+#define FE_CONNECT_H
+
+/*----------------------------------------------------------------
+ * Common routines and definitions
+ *----------------------------------------------------------------
+ */
+
+extern int packetSend(Port *port, PacketBuf *buf, PacketLen len, bool nonBlocking);
+
+#endif /* FE_CONNECT_H */
+#ifndef FE_CONNECT_H
+#define FE_CONNECT_H
+
+int packetSend(Port *port, PacketBuf *buf, PacketLen len, bool nonBlocking);
+
+#endif