[BACK]Return to remote.h CVS log [TXT][DIR] Up to [local] / src / usr.bin / cvs

Annotation of src/usr.bin/cvs/remote.h, Revision 1.1

1.1     ! joris       1: /*     $OpenBSD$       */
        !             2: /*
        !             3:  * Copyright (c) 2006 Joris Vink <joris@openbsd.org>
        !             4:  *
        !             5:  * Permission to use, copy, modify, and distribute this software for any
        !             6:  * purpose with or without fee is hereby granted, provided that the above
        !             7:  * copyright notice and this permission notice appear in all copies.
        !             8:  *
        !             9:  * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
        !            10:  * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
        !            11:  * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
        !            12:  * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
        !            13:  * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
        !            14:  * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
        !            15:  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
        !            16:  */
        !            17:
        !            18: #ifndef H_REMOTE
        !            19: #define H_REMOTE
        !            20:
        !            21: struct cvs_req {
        !            22:        char    name[32];
        !            23:        int     supported;
        !            24:
        !            25:        void    (*hdlr)(char *);
        !            26:        int     flags;
        !            27: };
        !            28:
        !            29: struct cvs_resp {
        !            30:        char    name[32];
        !            31:        int     supported;
        !            32:
        !            33:        void    (*hdlr)(char *);
        !            34:        int     flags;
        !            35: };
        !            36:
        !            37: #define        REQ_NEEDED      0x01
        !            38: #define RESP_NEEDED    0x01
        !            39:
        !            40: void   cvs_client_connect_to_server(void);
        !            41: void   cvs_client_disconnect(void);
        !            42: void   cvs_client_send_request(char *, ...);
        !            43: void   cvs_client_read_response(void);
        !            44: void   cvs_client_get_responses(void);
        !            45:
        !            46: void   cvs_client_ok(char *);
        !            47: void   cvs_client_error(char *);
        !            48: void   cvs_client_validreq(char *);
        !            49: void   cvs_client_e(char *);
        !            50: void   cvs_client_m(char *);
        !            51: void   cvs_client_checkedin(char *);
        !            52: void   cvs_client_updated(char *);
        !            53: void   cvs_client_merged(char *);
        !            54: void   cvs_client_removed(char *);
        !            55: void   cvs_client_remove_entry(char *);
        !            56:
        !            57: void   cvs_client_senddir(const char *);
        !            58: void   cvs_client_sendfile(struct cvs_file *);
        !            59: void   cvs_client_send_files(char **, int);
        !            60:
        !            61: void   cvs_server_root(char *);
        !            62: void   cvs_server_send_response(char *, ...);
        !            63: void   cvs_server_validresp(char *);
        !            64: void   cvs_server_validreq(char *);
        !            65: void   cvs_server_globalopt(char *);
        !            66: void   cvs_server_directory(char *);
        !            67: void   cvs_server_entry(char *);
        !            68: void   cvs_server_modified(char *);
        !            69: void   cvs_server_useunchanged(char *);
        !            70: void   cvs_server_unchanged(char *);
        !            71: void   cvs_server_questionable(char *);
        !            72: void   cvs_server_argument(char *);
        !            73:
        !            74: void   cvs_server_commit(char *);
        !            75: void   cvs_server_diff(char *);
        !            76: void   cvs_server_update(char *);
        !            77: void   cvs_server_status(char *);
        !            78: void   cvs_server_log(char *);
        !            79:
        !            80: void   cvs_remote_classify_file(struct cvs_file *);
        !            81: void   cvs_remote_output(const char *);
        !            82: char   *cvs_remote_input(void);
        !            83: BUF    *cvs_remote_receive_file(size_t len);
        !            84: void   cvs_remote_send_file(const char *);
        !            85:
        !            86: extern struct cvs_req cvs_requests[];
        !            87: extern struct cvs_resp cvs_responses[];
        !            88:
        !            89: struct cvs_req *cvs_remote_get_request_info(const char *);
        !            90: struct cvs_resp *cvs_remote_get_response_info(const char *);
        !            91:
        !            92: #endif