diff options
author | Xavier Santolaria <xsa@cvs.openbsd.org> | 2006-12-19 11:46:40 +0000 |
---|---|---|
committer | Xavier Santolaria <xsa@cvs.openbsd.org> | 2006-12-19 11:46:40 +0000 |
commit | 830b3da8bcd9664623a1ec0266ad5375f12054ee (patch) | |
tree | 1ed7840fc79add9d5af20511d842e64d40e09b45 /usr.bin/cvs/remote.h | |
parent | 10f0fbacbf47f76338f2fe5572c63c96da5bb222 (diff) |
add client-side support for Clear-static-directory, Clear-sticky and
Set-sticky requests. Set-sticky needs more work though.
Diffstat (limited to 'usr.bin/cvs/remote.h')
-rw-r--r-- | usr.bin/cvs/remote.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/usr.bin/cvs/remote.h b/usr.bin/cvs/remote.h index d54308193ab..24f14052530 100644 --- a/usr.bin/cvs/remote.h +++ b/usr.bin/cvs/remote.h @@ -1,4 +1,4 @@ -/* $OpenBSD: remote.h,v 1.12 2006/12/15 13:12:14 xsa Exp $ */ +/* $OpenBSD: remote.h,v 1.13 2006/12/19 11:46:39 xsa Exp $ */ /* * Copyright (c) 2006 Joris Vink <joris@openbsd.org> * @@ -53,6 +53,9 @@ void cvs_client_updated(char *); void cvs_client_merged(char *); void cvs_client_removed(char *); void cvs_client_remove_entry(char *); +void cvs_client_clear_static_directory(char *); +void cvs_client_set_sticky(char *); +void cvs_client_clear_sticky(char *); void cvs_client_senddir(const char *); void cvs_client_sendfile(struct cvs_file *); |