fix security issue(TSAM-13252)
[platform/core/connectivity/mtp-responder.git] / mtp-responder.conf
1 ### MTP features
2 #Nothing yet
3 ### MTP features (End)
4
5
6 ### Debug
7 #
8 # You can fix destination or source file path for SendObject or GetObject MTP commands when fake_copy is 1.
9 # Default is 0(Not use).
10 fake_copy=0
11 # If you want to read data from USB without writing to file system, specify "write_to=null".
12 # Available value : null or /dev/null
13 write_to=null
14 # If you want to write arbitrary data to USB without reading from file system, specify "read_from=null".
15 # Available value : null or /dev/zero
16 read_from=null
17 ### Debug (End)
18
19
20 ### Speed related config
21 #
22 # Max. 512KB. If requested memory is lesser than this, malloc is used. Otherwise, mmap is used
23 mmap_threshold=524288
24
25 read_usb_size=4096
26 write_usb_size=4096
27
28 # Init. IPC size between USB and File threads (< mmap_threshold and =< max_ipc_size)
29 init_rx_ipc_size=32768
30 init_tx_ipc_size=262144
31
32 # Max. IPC size between USB and File threads (< mmap_threshold)
33 max_rx_ipc_size=32768
34 max_tx_ipc_size=262144
35
36 # Max. Heap memory size for buffer between USb and File threads
37 max_io_buf_size=10485760
38
39 read_file_delay=0
40
41 ### Experimental
42 #
43 # I/O thread priority handling
44 #support_pthread_sched=0
45
46 # i : Inherit, e : Explicit
47 #inheritsched=i
48
49 # f : FIFO, r : Round Robin, o : Other
50 #schedpolicy=o
51
52 # File I/O thread's priority for scheduling
53 #file_schedparam=0
54
55 # USB I/O thread's priority for scheduling
56 #usb_schedparam=0
57 # I/O thread priority handling (End)
58
59 #
60 ### Experimental (End)
61 ### Speed related config (End)