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

Software: Apache/2.0.54 (Unix) mod_perl/1.99_09 Perl/v5.8.0 mod_ssl/2.0.54 OpenSSL/0.9.7l DAV/2 FrontPage/5.0.2.2635 PHP/4.4.0 mod_gzip/2.0.26.1a 

uname -a: Linux snow.he.net 4.4.276-v2-mono-1 #1 SMP Wed Jul 21 11:21:17 PDT 2021 i686 

uid=99(nobody) gid=98(nobody) groups=98(nobody) 

Safe-mode: OFF (not secure)

/usr/src/linux-2.4.18-xfs-1.1/drivers/usb/   drwxr-xr-x
Free 318.38 GB of 458.09 GB (69.5%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     vicam.h (1.59 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
/*
 *
 * Vista Imaging ViCAM / 3Com HomeConnect Usermode Driver
 * Christopher L Cheney (C) 2001
 * 
 */

#ifndef __LINUX_VICAM_H
#define __LINUX_VICAM_H


#ifdef CONFIG_USB_DEBUG
    static int debug = 1;
#else
    static int debug;
#endif

/* Use our own dbg macro */
#undef dbg
#define dbg(format, arg...) do { if (debug) printk(KERN_DEBUG __FILE__ ": " format "\n" , ## arg); } while (0)

#define VICAM_NUMFRAMES 30
#define VICAM_NUMSBUF 1

/* USB REQUEST NUMBERS */
#define VICAM_REQ_VENDOR    0xff
#define VICAM_REQ_CAMERA_POWER    0x50
#define VICAM_REQ_CAPTURE    0x51
#define VICAM_REQ_LED_CONTROL    0x55
#define VICAM_REQ_GET_SOMETHIN    0x56
 
/* not required but lets you know camera is on */
/* camera must be on to turn on led */
/* 0x01 always on  0x03 on when picture taken (flashes) */

struct picture_parm
{
    int width;
    int height;
    int brightness;
    int hue;
    int colour;
    int contrast;
    int whiteness;
    int depth;
    int palette;
};

struct vicam_scratch {
        unsigned char *data;
        volatile int state;
        int offset;
        int length;
};

/* Structure to hold all of our device specific stuff */
struct usb_vicam
{
    struct video_device vdev;
    struct usb_device *udev;

    int open_count;    /* number of times this port has been opened */
    struct semaphore sem;            /* locks this structure */
    wait_queue_head_t wait;            /* Processes waiting */ 

    int streaming;

    /* v4l stuff */
    char *camera_name;
    char *fbuf;
    urb_t *urb[VICAM_NUMSBUF];
    int sizes;
    int *width;
    int *height;
    int maxframesize;
    struct picture_parm win;
    struct proc_dir_entry *proc_entry;      /* /proc/se401/videoX */
    struct urb readurb;
};

#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 #13 powered by Captain Crunch Security Team | http://ccteam.ru | Generation time: 0.0339 ]--