cachepc-linux

Fork of AMDESE/linux with modifications for CachePC side-channel attack
git clone https://git.sinitax.com/sinitax/cachepc-linux
Log | Files | Refs | README | LICENSE | sfeed.txt

usbip.h (693B)


      1/* SPDX-License-Identifier: GPL-2.0-or-later */
      2/*
      3 * Copyright (C) 2011 matt mooney <mfm@muteddisk.com>
      4 *               2005-2007 Takahiro Hirofuchi
      5 */
      6
      7#ifndef __USBIP_H
      8#define __USBIP_H
      9
     10#ifdef HAVE_CONFIG_H
     11#include "../config.h"
     12#endif
     13
     14/* usbip commands */
     15int usbip_attach(int argc, char *argv[]);
     16int usbip_detach(int argc, char *argv[]);
     17int usbip_list(int argc, char *argv[]);
     18int usbip_bind(int argc, char *argv[]);
     19int usbip_unbind(int argc, char *argv[]);
     20int usbip_port_show(int argc, char *argv[]);
     21
     22void usbip_attach_usage(void);
     23void usbip_detach_usage(void);
     24void usbip_list_usage(void);
     25void usbip_bind_usage(void);
     26void usbip_unbind_usage(void);
     27
     28#endif /* __USBIP_H */