summaryrefslogtreecommitdiff
path: root/usr.bin/cvs/proto.h
diff options
context:
space:
mode:
authorJoris Vink <joris@cvs.openbsd.org>2005-12-30 02:03:29 +0000
committerJoris Vink <joris@cvs.openbsd.org>2005-12-30 02:03:29 +0000
commiteba90c397238078d4145046f9f6056ced60b52a2 (patch)
tree066c330f8d693daf3ac9fd783129c19fb2049af8 /usr.bin/cvs/proto.h
parent0a6f2c57253516d05a4ecc720d8b82cc8f25697a (diff)
major cleanup of the functions handling the remote cvs protocol.
makes the code a lot more readable and understandable. ok xsa@ and niallo@
Diffstat (limited to 'usr.bin/cvs/proto.h')
-rw-r--r--usr.bin/cvs/proto.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/usr.bin/cvs/proto.h b/usr.bin/cvs/proto.h
index 26ca70f791b..1df7b7ff2a0 100644
--- a/usr.bin/cvs/proto.h
+++ b/usr.bin/cvs/proto.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: proto.h,v 1.8 2005/10/17 16:16:00 moritz Exp $ */
+/* $OpenBSD: proto.h,v 1.9 2005/12/30 02:03:28 joris Exp $ */
/*
* Copyright (c) 2004 Jean-Francois Brousseau <jfb@openbsd.org>
* All rights reserved.
@@ -167,8 +167,8 @@ struct cvs_resp {
BUF *cvs_recvfile(struct cvsroot *, mode_t *);
-int cvs_sendfile(struct cvsroot *, const char *);
-int cvs_connect(struct cvsroot *);
+void cvs_sendfile(struct cvsroot *, const char *);
+void cvs_connect(struct cvsroot *);
void cvs_disconnect(struct cvsroot *);
int cvs_req_handle(char *);
@@ -181,15 +181,15 @@ struct cvs_resp* cvs_resp_getbyid(int);
struct cvs_resp* cvs_resp_getbyname(const char *);
char* cvs_resp_getvalid(void);
-int cvs_sendreq(struct cvsroot *, u_int, const char *);
-int cvs_getresp(struct cvsroot *);
+void cvs_sendreq(struct cvsroot *, u_int, const char *);
+void cvs_getresp(struct cvsroot *);
int cvs_sendresp(u_int, const char *);
int cvs_getln(struct cvsroot *, char *, size_t);
-int cvs_senddir(struct cvsroot *, CVSFILE *);
-int cvs_sendarg(struct cvsroot *, const char *, int);
-int cvs_sendln(struct cvsroot *, const char *);
-int cvs_sendentry(struct cvsroot *, const CVSFILE *);
-int cvs_sendraw(struct cvsroot *, const void *, size_t);
+void cvs_senddir(struct cvsroot *, CVSFILE *);
+void cvs_sendarg(struct cvsroot *, const char *, int);
+void cvs_sendln(struct cvsroot *, const char *);
+void cvs_sendentry(struct cvsroot *, const CVSFILE *);
+void cvs_sendraw(struct cvsroot *, const void *, size_t);
ssize_t cvs_recvraw(struct cvsroot *, void *, size_t);