[BACK]Return to sftp-glob.h CVS log [TXT][DIR] Up to [local] / src / usr.bin / ssh

Annotation of src/usr.bin/ssh/sftp-glob.h, Revision 1.9

1.9     ! djm         1: /* $OpenBSD: sftp-glob.h,v 1.8 2002/09/11 22:41:50 djm Exp $ */
1.1       djm         2:
                      3: /*
1.9     ! djm         4:  * Copyright (c) 2001-2004 Damien Miller <djm@openbsd.org>
1.1       djm         5:  *
1.9     ! djm         6:  * Permission to use, copy, modify, and distribute this software for any
        !             7:  * purpose with or without fee is hereby granted, provided that the above
        !             8:  * copyright notice and this permission notice appear in all copies.
1.1       djm         9:  *
1.9     ! djm        10:  * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
        !            11:  * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
        !            12:  * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
        !            13:  * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
        !            14:  * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
        !            15:  * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
        !            16:  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
1.1       djm        17:  */
                     18:
                     19: /* Remote sftp filename globbing */
                     20:
1.6       djm        21: #ifndef _SFTP_GLOB_H
                     22: #define _SFTP_GLOB_H
                     23:
                     24: #include "sftp-client.h"
                     25:
1.8       djm        26: int remote_glob(struct sftp_conn *, const char *, int,
1.6       djm        27:     int (*)(const char *, int), glob_t *);
                     28:
                     29: #endif