Directory Structure of ION
[ams] Asynchronous Message Service
is a data system communication architecture that minimize complexity in the development and operations of data systems by isolating the modules of mission systems. It is at the application service layer.Details Description
Some c files in ams folder containing main() function. If a file contains main() function, its program is created in main directory (ION/ion-3.5.0). Here is the structure of main function and the list of programs#if defined (ION_LWT)
int filename (int a1, int a2, int a3, int a4, int a5,
int a6, int a7, int a8, int a9, int a10)
#else
int main(int argc, char *argv[])
{
return 0;
}
- ams/library/amsd.c
- ams/rams/ramsgate.c
- ams/test/amsbenchr.c
- ams/test/amsbenchs.c
- ams/test/amshello.c
- ams/test/amslog.c
- ams/test/amslogprt.c
- ams/test/amsshell.c
- ams/utils/amsmib.c
- ams/utils/amsstop.c (don't know why it does not create this problem even its c file has main())
[bp] Bundle Protocol
Provide route computation, forwarding, congestion avoidance, and control over quality of service. It includes CGR (Contact Graph Routing).
Bundle protocol = Internet protocol IP
Details Description
There are a lot of c files containing main() functions in this bp folder, and almost all files have the same format as the following.
/* * * Main thread functions * * * */
#if defined (ION_LWT)
int filename (int a1, int a2, int a3, int a4, int a5,
int a6, int a7, int a8, int a9, int a10)
#else
int main(int argc, char *argv[])
{
return 0;
}
After building entire ION system, all c files containing main() function are created their program in the main directory of ION system. Therefore, we have the list of program names for bp folder:
acsadmin | acslist | bibeclo | bpadmin | bpcancel | bpchat | bpclock |
bpcounter | bpdriver | bpecho | bping | bplist | bpnmtest | bprecvfile |
bpsendfile | bpsink | bpsource | bpstats | bpstats2 | bptrace | bptransit |
brsccla | brsscla | bsspcli | bsspclo | cgrfetch | dccpcli | dccpclo |
dgrcla | dtn2admin | dtn2adminep | dtn2fw | hmackeys | imcadmin | imcfw |
ipnadmin | ipnadminep | ipnd | ipnfw | lgagent | lgsend | ltpcli |
ltpclo | stcpcli | stcpclo | tcpcli | tcpclo | udpcli | udpclo |
ION/ion-3.5.0/bpchat
[bss] Bundle Stream Service
provide service to stream video, data, continuous generated application data over a DTN (delay-tolerant network).Details Description
There is 4 c files containing containing main() function. Their program is created during the building process of the entire ION. The structure of main function and the list of programs are:
#if defined (ION_LWT)
int filename (int a1, int a2, int a3, int a4, int a5,
int a6, int a7, int a8, int a9, int a10)
#else
int main(int argc, char *argv[])
{
return 0;
}
- bss/test/bsscounter.c
- bss/test/bssdriver.c
- bss/test/bssrecv.c
- bss/test/bssStreamingApp.c
[cfdp] CCSDS File Delivery Protocol
provides unreliable transfer service and does not perform retransmission of lost data itself. It is at application service layer. CCSDS - Consultative Committee for Space Data SystemsDetails Description
Here is the list of c files containing main() function. These c files are created their program in main directory (ION/ion-3.5.0) except tcputa.c- cfdp/bp/bputa.c
- cfdp/daemon/cfdpclock.c
- cfdp/tcp/tcputa.c
- cfdp/test/cfdptest.c
- cfdp/utils/bpcp.c
- cfdp/utils/bpcpd.c
- cfdp/utils/cfdpadmin.c
#if defined (ION_LWT)
int filename (int a1, int a2, int a3, int a4, int a5,
int a6, int a7, int a8, int a9, int a10)
#else
int main(int argc, char *argv[])
{
return 0;
}
for tcputa.c
#if defined (VXWORKS) || defined (RTEMS) || defined (bionic)
int tcputa(int a1, int a2, int a3, int a4, int a5,
int a6, int a7, int a8, int a9, int a10)
{
#else
int main(int argc, char **argv)
{
return 0;
}
[dgr] Datagram Retransmission
It is an alternative implement of LTP. DGR is much closer to IP and IP-based works.
DGR = LTP = IP and other IP-based networks
Details Description
There are 6 .c files that contains main() function. Four of them do not have #if defined (ION_LWT) statement.- dgr/test/dgr2file.c
- dgr/test/file2dgr.c
- dgr/test/file2tcp.c only main without #if defined (ION_LWT)
- dgr/test/file2udp.c only main without #if defined (ION_LWT)
- dgr/test/tcp2file.c only main without #if defined (ION_LWT)
- dgr/test/udp2file.c only main without #if defined (ION_LWT)
int filename (int a1, int a2, int a3, int a4, int a5,
int a6, int a7, int a8, int a9, int a10)
#else
int main(int argc, char *argv[])
{
return 0;
}
[dtpc]
Details Description
There is 5 c files containing main() function, and they all use #if defined (ION_LWT).- dtpc/daemon/dtpcclock.c
- dtpc/daemon/dtpcd.c
- dtpc/test/dtpcreceive.c
- dtpc/test/dtpcsend.c
- dtpc/utils/dtpcadmin.c
int filename (int a1, int a2, int a3, int a4, int a5,
int a6, int a7, int a8, int a9, int a10)
#else
int main(int argc, char *argv[])
{
return 0;
}
[ici] Interplanetary Communication Infrastructure
provides a number of core services such as memory management, platform checking, inter-thread communication, zero-copy procedure, embedded diagnostic facility, performance monitor, and security, etc...Details Description
There are many .c files containing main() function.- ici/daemon/rfxclock.c
- ici/daemon/winion.c main without #if defined (ION_LWT)
- ici/libbloom-master/test.c main without #if defined (ION_LWT)
- ici/test/file2sdr.c
- ici/test/file2sm.c
- ici/test/owltsim.c main without #if defined (ION_LWT)
- ici/test/owlttb.c main without #if defined (ION_LWT)
- ici/test/psmshell.c
- ici/test/sdr2file.c
- ici/test/sm2file.c
- ici/test/smlistsh.c
- ici/test/smrbtsh.c
- ici/util/ionadmin.c
- ici/utils/ionexit.c
- ici/utils/ionsecadmin.c
- ici/utils/ionwarn.c
- ici/utils/killm.c main without #if defined (ION_LWT)
- ici/utils/psmwatch.c
- ici/utils/sdrmend.c
- ici/utils/sdrwatch.c
int filename (int a1, int a2, int a3, int a4, int a5,
int a6, int a7, int a8, int a9, int a10)
#else
int main(int argc, char *argv[])
{
return 0;
}
[ltp] Licklider Tranmission Protocol
LTP provides flow control and retransmission-based reliability between topologically adjacent bundle protocol agents. It is a reliable convergence-layer protocol
LTP = LLC (Logical Link Control) Protocol in the Internet architecture.
Details Description
There are many .c files containing main() function, and they all use #if defined (ION_LWT).- ltp/aos/aoslsi.c
- ltp/aos/aoslso.c
- ltp/daemon/ltpclock.c
- ltp/daemon/ltpmeter.c
- ltp/dccp/dccplsi.c
- ltp//dccp/dccplso.c
- ltp/test/ltpcounter.c
- ltp/test/ltpdriver.c
- ltp/test/sdatest.c
- ltp/udp/udplsi.c
- ltp/udp/udpiso.c
- ltp/utils/ltpadmin.c
#if defined (ION_LWT)
int filename (int a1, int a2, int a3, int a4, int a5,
int a6, int a7, int a8, int a9, int a10)
#else
int main(int argc, char *argv[])
{
return 0;
}
No comments:
Post a Comment