-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathREADME.txt
executable file
·83 lines (74 loc) · 1.83 KB
/
README.txt
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
program (aka zagent) will be designed with the following structure
|-- bin // Binaries directory
| `-- zagent // Main binary
|-- log // Log files directory
| `-- zagent.log // Main log file
|-- usr // User (zagent) data directory
| `-- cert // Certificates directory
| `-- zagent.pem // Certificate identifying this zagent
|-- src
| |-- config
| | `-- *.go files of this package!
| |-- log4go
| | `-- *.go files of this package!
| |-- main
| | `-- *.go files of this package!
| |-- search
| | `-- *.go files of this package!
| |-- tcpserver
| | `-- *.go files of this package!
| `-- util
| | `-- *.go files of this package!
Directory structure
.
|-- DIR_STRUCT.txt
|-- Makefile
|-- README.txt
|-- TODO.txt
|-- bin
| |-- search
| `-- zagent
|-- log
|-- pkg
| `-- linux_amd64
| |-- log4go.a
| |-- search.a
| `-- util.a
|-- src
| |-- config
| | `-- config.go
| |-- log4go
| | |-- LICENSE
| | |-- README
| | |-- config.go
| | |-- examples
| | | |-- ConsoleLogWriter_Manual.go
| | | |-- FileLogWriter_Manual.go
| | | |-- SimpleNetLogServer.go
| | | |-- SocketLogWriter_Manual.go
| | | |-- XMLConfigurationExample.go
| | | `-- example.xml
| | |-- filelog.go
| | |-- log4go.go
| | |-- log4go_test.go
| | |-- pattlog.go
| | |-- socklog.go
| | |-- termlog.go
| | `-- wrapper.go
| |-- main
| | `-- zagent.go
| |-- search
| | `-- search.go
| |-- tcpserver
| | |-- archive
| | | `-- archive.go
| | |-- handler
| | | `-- agthandler
| | | `-- agthandler.go
| | |-- server
| | | `-- server.go
| | `-- tcpserver.go
| `-- util
| `-- util.go
`-- zagent.log
16 directories, 34 files