Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
torvalds
GitHub Repository: torvalds/linux
Path: blob/master/tools/usb/usbip/src/usbip.h
26295 views
1
/* SPDX-License-Identifier: GPL-2.0-or-later */
2
/*
3
* Copyright (C) 2011 matt mooney <[email protected]>
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 */
15
int usbip_attach(int argc, char *argv[]);
16
int usbip_detach(int argc, char *argv[]);
17
int usbip_list(int argc, char *argv[]);
18
int usbip_bind(int argc, char *argv[]);
19
int usbip_unbind(int argc, char *argv[]);
20
int usbip_port_show(int argc, char *argv[]);
21
22
void usbip_attach_usage(void);
23
void usbip_detach_usage(void);
24
void usbip_list_usage(void);
25
void usbip_bind_usage(void);
26
void usbip_unbind_usage(void);
27
28
#endif /* __USBIP_H */
29
30