-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCommand.json
49 lines (46 loc) · 1.26 KB
/
Command.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
[
{
"commande": "USER" ,
"happened": "check if the user exist"
},
{
"commande": "PASS" ,
"happened": "authenticate the user with a password"
},
{
"commande": "LIST" ,
"happened": "list the current directory of the server"
},
{
"commande": "CWD" ,
"happened": "change the current directory of the server "
},
{
"commande": "PWD" ,
"happened": "display the name of the current directory of the server"
},
{
"commande": "QUIT" ,
"happened": "close the connection and stop the program"
},
{
"commande": "RETR" ,
"happened": "transfer a copy of the file FILE from the server to the client"
},
{
"commande": "STOR" ,
"happened": "transfer a copy of the file FILE from the client to the server"
},
{
"commande": "mget" ,
"happened": "transfer multiple copy of the file FILE from the server to the client"
},
{
"commande": "mput" ,
"happened": "transfer multiple copy of files FILE from the client to the server"
},
{
"commande": "LPWD" ,
"happened": "display the name of the current directory of the client"
}
]