!C99Shell v. 1.0 pre-release build #16!

Software: Apache/2.0.54 (Fedora). PHP/5.0.4 

uname -a: Linux mina-info.me 2.6.17-1.2142_FC4smp #1 SMP Tue Jul 11 22:57:02 EDT 2006 i686 

uid=48(apache) gid=48(apache) groups=48(apache)
context=system_u:system_r:httpd_sys_script_t
 

Safe-mode: OFF (not secure)

/usr/include/libuser/   drwxr-xr-x
Free 3.84 GB of 27.03 GB (14.22%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     prompt.h (2.7 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
/*
* Copyright (C) 2000-2002 Red Hat, Inc.
*
* This is free software; you can redistribute it and/or modify it under
* the terms of the GNU Library General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
* General Public License for more details.
*
* You should have received a copy of the GNU Library General Public
* License along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/

#ifndef libuser_prompt_h
#define libuser_prompt_h

#include <sys/types.h>
#include <glib.h>

G_BEGIN_DECLS

/* The type of data passed to a prompter function.  The library uses these
* when it needs to prompt the user for information. */
struct lu_prompt {
    /* An invariant string of the form "module/name", which describes the
     * information being prompted for.  The calling application may use
     * this value as an index into a hash table used to cache answers to
     * particular queries. */
    const char *key;
    /* The text of a prompt to display.  This *may* be translated for the
     * current locale by a module. */
    const char *prompt;
    /* The text domain which contains this prompt's translations.  This
     * may be the default libuser domain, or a module-specific text domain
     * which the module which provided this prompt bound for gettext when
     * it was loaded. */
    const char *domain;
    /* Whether or not the user's response should be echoed to the screen
     * (in a console app) or visible in an entry field (in a GUI app).*/
    gboolean visible;
    /* A default value, given as a string.  This will only contain a
     * value if the string is visible, but the reverse won't necessarily
     * be true (default_value -> visible). */
    const char *default_value;
    /* The user's response.  This is set by the prompter function. */
    char *value;
    /* A function which can free the user's response.  This is set by the
     * prompter function.  If NULL, the response will not be freed, ever. */
    void (*free_value) (void *);
};

/* A prompter function. */
typedef gboolean (lu_prompt_fn)(struct lu_prompt * prompts,
                int count,
                gpointer callback_data,
                struct lu_error ** error);

/* Built-in prompter functions. */
gboolean lu_prompt_console(struct lu_prompt *prompts,
               int count,
               gpointer callback_data,
               struct lu_error **error);
gboolean lu_prompt_console_quiet(struct lu_prompt *prompts,
                 int count,
                 gpointer callback_data,
                 struct lu_error **error);

G_END_DECLS

#endif

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

:: Make Dir ::
 
[ Read-Only ]
:: Make File ::
 
[ Read-Only ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 1.0 pre-release build #16 powered by Captain Crunch Security Team | http://ccteam.ru | Generation time: 0.0031 ]--