├── .gitignore ├── .gitlab-ci.yml ├── .idea ├── codeStyles │ └── Project.xml └── vcs.xml ├── AUTHORS ├── BUGS ├── CMakeLists.txt ├── COPYING ├── ChangeLog ├── INSTALL ├── NEWS ├── README.cmake ├── README.md ├── TODO ├── config.h.msvc ├── contrib ├── etc │ ├── fgms.service │ ├── fgms_local.skel.conf │ ├── fgms_production.skel.conf │ ├── init_d.fgms-skel │ └── supervisor.fgms.conf ├── mpstatus │ ├── .htaccess │ ├── config.pl │ ├── index.shtml │ └── instructions.txt └── tools │ └── check_fgms.sh ├── docs ├── 404.html ├── README.txt ├── doxy.conf ├── fgms.css ├── footer.html ├── header.html ├── img │ ├── FGMS-HUB.png │ ├── FGMS-NxNGrid.png │ ├── FlightGear_logo.png │ ├── MP_01.jpg │ ├── Screenshot_7.jpg │ ├── favicon.ico │ ├── favicon.png │ ├── fg-mp-1.png │ ├── fgms.1.dia │ ├── fgms.1.png │ ├── flightgear-9.jpg │ └── flightgear_mp_flow.jpg ├── jquery.lightbox-0.5.css ├── jquery.lightbox-0.5.js ├── lightbox_images │ ├── lightbox-blank.gif │ ├── lightbox-btn-close.gif │ ├── lightbox-btn-next.gif │ ├── lightbox-btn-prev.gif │ └── lightbox-ico-loading.gif ├── pages │ ├── page_conf.cxx │ ├── page_developers.cxx │ ├── page_developers_guide.cxx │ ├── page_fgms.cxx │ ├── page_flightgear.cxx │ ├── page_hosting.cxx │ ├── page_install.cpp │ ├── page_main.cpp │ ├── page_network.cxx │ ├── page_overview.cxx │ └── page_tracker.cxx └── robots.txt ├── gitlog.sh ├── homedir.cfg ├── src ├── flightgear │ └── MultiPlayer │ │ ├── mpmessages.hxx │ │ ├── tiny_xdr.cxx │ │ └── tiny_xdr.hxx ├── libcli │ ├── README │ ├── clitest.cxx │ ├── command.cxx │ ├── command.hxx │ ├── common.hxx │ ├── connection.cxx │ ├── connection.hxx │ ├── crypt-win.c │ ├── debug.cxx │ ├── debug.hxx │ ├── editor.cxx │ ├── editor.hxx │ ├── filter.cxx │ ├── filter.hxx │ ├── libcli.cxx │ └── libcli.hxx ├── libmsc │ ├── msc_unistd.cxx │ └── msc_unistd.hxx ├── plib │ ├── netSocket.cxx │ └── netSocket.h ├── server │ ├── FILES │ ├── daemon.cxx │ ├── daemon.hxx │ ├── fg_cli.cxx │ ├── fg_cli.hxx │ ├── fg_common.hxx │ ├── fg_config.cxx │ ├── fg_config.hxx │ ├── fg_geometry.cxx │ ├── fg_geometry.hxx │ ├── fg_list.cxx │ ├── fg_list.hxx │ ├── fg_server.cxx │ ├── fg_server.hxx │ ├── fg_tracker.cxx │ ├── fg_tracker.hxx │ ├── fg_util.cxx │ ├── fg_util.hxx │ └── main.cxx └── simgear │ ├── compiler.h │ ├── debug │ ├── debug_types.h │ ├── logstream.cxx │ └── logstream.hxx │ ├── math │ ├── SGEuler.cxx │ ├── SGEuler.hxx │ └── SGMath.hxx │ └── misc │ └── stdint.hxx └── version /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlightGear/fgms/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlightGear/fgms/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /.idea/codeStyles/Project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlightGear/fgms/HEAD/.idea/codeStyles/Project.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlightGear/fgms/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlightGear/fgms/HEAD/AUTHORS -------------------------------------------------------------------------------- /BUGS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlightGear/fgms/HEAD/BUGS -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlightGear/fgms/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlightGear/fgms/HEAD/COPYING -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlightGear/fgms/HEAD/ChangeLog -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlightGear/fgms/HEAD/INSTALL -------------------------------------------------------------------------------- /NEWS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlightGear/fgms/HEAD/README.cmake -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlightGear/fgms/HEAD/README.md -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlightGear/fgms/HEAD/TODO -------------------------------------------------------------------------------- /config.h.msvc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlightGear/fgms/HEAD/config.h.msvc -------------------------------------------------------------------------------- /contrib/etc/fgms.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlightGear/fgms/HEAD/contrib/etc/fgms.service -------------------------------------------------------------------------------- /contrib/etc/fgms_local.skel.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlightGear/fgms/HEAD/contrib/etc/fgms_local.skel.conf -------------------------------------------------------------------------------- /contrib/etc/fgms_production.skel.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlightGear/fgms/HEAD/contrib/etc/fgms_production.skel.conf -------------------------------------------------------------------------------- /contrib/etc/init_d.fgms-skel: -------------------------------------------------------------------------------- 1 | # This is a skeleton init.d files 2 | 3 | ## TODO 4 | -------------------------------------------------------------------------------- /contrib/etc/supervisor.fgms.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlightGear/fgms/HEAD/contrib/etc/supervisor.fgms.conf -------------------------------------------------------------------------------- /contrib/mpstatus/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlightGear/fgms/HEAD/contrib/mpstatus/.htaccess -------------------------------------------------------------------------------- /contrib/mpstatus/config.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlightGear/fgms/HEAD/contrib/mpstatus/config.pl -------------------------------------------------------------------------------- /contrib/mpstatus/index.shtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlightGear/fgms/HEAD/contrib/mpstatus/index.shtml -------------------------------------------------------------------------------- /contrib/mpstatus/instructions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlightGear/fgms/HEAD/contrib/mpstatus/instructions.txt -------------------------------------------------------------------------------- /contrib/tools/check_fgms.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlightGear/fgms/HEAD/contrib/tools/check_fgms.sh -------------------------------------------------------------------------------- /docs/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlightGear/fgms/HEAD/docs/404.html -------------------------------------------------------------------------------- /docs/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlightGear/fgms/HEAD/docs/README.txt -------------------------------------------------------------------------------- /docs/doxy.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlightGear/fgms/HEAD/docs/doxy.conf -------------------------------------------------------------------------------- /docs/fgms.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlightGear/fgms/HEAD/docs/fgms.css -------------------------------------------------------------------------------- /docs/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlightGear/fgms/HEAD/docs/footer.html -------------------------------------------------------------------------------- /docs/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlightGear/fgms/HEAD/docs/header.html -------------------------------------------------------------------------------- /docs/img/FGMS-HUB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlightGear/fgms/HEAD/docs/img/FGMS-HUB.png -------------------------------------------------------------------------------- /docs/img/FGMS-NxNGrid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlightGear/fgms/HEAD/docs/img/FGMS-NxNGrid.png -------------------------------------------------------------------------------- /docs/img/FlightGear_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlightGear/fgms/HEAD/docs/img/FlightGear_logo.png -------------------------------------------------------------------------------- /docs/img/MP_01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlightGear/fgms/HEAD/docs/img/MP_01.jpg -------------------------------------------------------------------------------- /docs/img/Screenshot_7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlightGear/fgms/HEAD/docs/img/Screenshot_7.jpg -------------------------------------------------------------------------------- /docs/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlightGear/fgms/HEAD/docs/img/favicon.ico -------------------------------------------------------------------------------- /docs/img/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlightGear/fgms/HEAD/docs/img/favicon.png -------------------------------------------------------------------------------- /docs/img/fg-mp-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlightGear/fgms/HEAD/docs/img/fg-mp-1.png -------------------------------------------------------------------------------- /docs/img/fgms.1.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlightGear/fgms/HEAD/docs/img/fgms.1.dia -------------------------------------------------------------------------------- /docs/img/fgms.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlightGear/fgms/HEAD/docs/img/fgms.1.png -------------------------------------------------------------------------------- /docs/img/flightgear-9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlightGear/fgms/HEAD/docs/img/flightgear-9.jpg -------------------------------------------------------------------------------- /docs/img/flightgear_mp_flow.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlightGear/fgms/HEAD/docs/img/flightgear_mp_flow.jpg -------------------------------------------------------------------------------- /docs/jquery.lightbox-0.5.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlightGear/fgms/HEAD/docs/jquery.lightbox-0.5.css -------------------------------------------------------------------------------- /docs/jquery.lightbox-0.5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlightGear/fgms/HEAD/docs/jquery.lightbox-0.5.js -------------------------------------------------------------------------------- /docs/lightbox_images/lightbox-blank.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlightGear/fgms/HEAD/docs/lightbox_images/lightbox-blank.gif -------------------------------------------------------------------------------- /docs/lightbox_images/lightbox-btn-close.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlightGear/fgms/HEAD/docs/lightbox_images/lightbox-btn-close.gif -------------------------------------------------------------------------------- /docs/lightbox_images/lightbox-btn-next.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlightGear/fgms/HEAD/docs/lightbox_images/lightbox-btn-next.gif -------------------------------------------------------------------------------- /docs/lightbox_images/lightbox-btn-prev.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlightGear/fgms/HEAD/docs/lightbox_images/lightbox-btn-prev.gif -------------------------------------------------------------------------------- /docs/lightbox_images/lightbox-ico-loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlightGear/fgms/HEAD/docs/lightbox_images/lightbox-ico-loading.gif -------------------------------------------------------------------------------- /docs/pages/page_conf.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlightGear/fgms/HEAD/docs/pages/page_conf.cxx -------------------------------------------------------------------------------- /docs/pages/page_developers.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlightGear/fgms/HEAD/docs/pages/page_developers.cxx -------------------------------------------------------------------------------- /docs/pages/page_developers_guide.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlightGear/fgms/HEAD/docs/pages/page_developers_guide.cxx -------------------------------------------------------------------------------- /docs/pages/page_fgms.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlightGear/fgms/HEAD/docs/pages/page_fgms.cxx -------------------------------------------------------------------------------- /docs/pages/page_flightgear.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlightGear/fgms/HEAD/docs/pages/page_flightgear.cxx -------------------------------------------------------------------------------- /docs/pages/page_hosting.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlightGear/fgms/HEAD/docs/pages/page_hosting.cxx -------------------------------------------------------------------------------- /docs/pages/page_install.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlightGear/fgms/HEAD/docs/pages/page_install.cpp -------------------------------------------------------------------------------- /docs/pages/page_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlightGear/fgms/HEAD/docs/pages/page_main.cpp -------------------------------------------------------------------------------- /docs/pages/page_network.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlightGear/fgms/HEAD/docs/pages/page_network.cxx -------------------------------------------------------------------------------- /docs/pages/page_overview.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlightGear/fgms/HEAD/docs/pages/page_overview.cxx -------------------------------------------------------------------------------- /docs/pages/page_tracker.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlightGear/fgms/HEAD/docs/pages/page_tracker.cxx -------------------------------------------------------------------------------- /docs/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | 3 | -------------------------------------------------------------------------------- /gitlog.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | git log --pretty=medium > ChangeLog 4 | -------------------------------------------------------------------------------- /homedir.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlightGear/fgms/HEAD/homedir.cfg -------------------------------------------------------------------------------- /src/flightgear/MultiPlayer/mpmessages.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlightGear/fgms/HEAD/src/flightgear/MultiPlayer/mpmessages.hxx -------------------------------------------------------------------------------- /src/flightgear/MultiPlayer/tiny_xdr.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlightGear/fgms/HEAD/src/flightgear/MultiPlayer/tiny_xdr.cxx -------------------------------------------------------------------------------- /src/flightgear/MultiPlayer/tiny_xdr.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlightGear/fgms/HEAD/src/flightgear/MultiPlayer/tiny_xdr.hxx -------------------------------------------------------------------------------- /src/libcli/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlightGear/fgms/HEAD/src/libcli/README -------------------------------------------------------------------------------- /src/libcli/clitest.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlightGear/fgms/HEAD/src/libcli/clitest.cxx -------------------------------------------------------------------------------- /src/libcli/command.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlightGear/fgms/HEAD/src/libcli/command.cxx -------------------------------------------------------------------------------- /src/libcli/command.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlightGear/fgms/HEAD/src/libcli/command.hxx -------------------------------------------------------------------------------- /src/libcli/common.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlightGear/fgms/HEAD/src/libcli/common.hxx -------------------------------------------------------------------------------- /src/libcli/connection.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlightGear/fgms/HEAD/src/libcli/connection.cxx -------------------------------------------------------------------------------- /src/libcli/connection.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlightGear/fgms/HEAD/src/libcli/connection.hxx -------------------------------------------------------------------------------- /src/libcli/crypt-win.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlightGear/fgms/HEAD/src/libcli/crypt-win.c -------------------------------------------------------------------------------- /src/libcli/debug.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlightGear/fgms/HEAD/src/libcli/debug.cxx -------------------------------------------------------------------------------- /src/libcli/debug.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlightGear/fgms/HEAD/src/libcli/debug.hxx -------------------------------------------------------------------------------- /src/libcli/editor.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlightGear/fgms/HEAD/src/libcli/editor.cxx -------------------------------------------------------------------------------- /src/libcli/editor.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlightGear/fgms/HEAD/src/libcli/editor.hxx -------------------------------------------------------------------------------- /src/libcli/filter.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlightGear/fgms/HEAD/src/libcli/filter.cxx -------------------------------------------------------------------------------- /src/libcli/filter.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlightGear/fgms/HEAD/src/libcli/filter.hxx -------------------------------------------------------------------------------- /src/libcli/libcli.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlightGear/fgms/HEAD/src/libcli/libcli.cxx -------------------------------------------------------------------------------- /src/libcli/libcli.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlightGear/fgms/HEAD/src/libcli/libcli.hxx -------------------------------------------------------------------------------- /src/libmsc/msc_unistd.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlightGear/fgms/HEAD/src/libmsc/msc_unistd.cxx -------------------------------------------------------------------------------- /src/libmsc/msc_unistd.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlightGear/fgms/HEAD/src/libmsc/msc_unistd.hxx -------------------------------------------------------------------------------- /src/plib/netSocket.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlightGear/fgms/HEAD/src/plib/netSocket.cxx -------------------------------------------------------------------------------- /src/plib/netSocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlightGear/fgms/HEAD/src/plib/netSocket.h -------------------------------------------------------------------------------- /src/server/FILES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlightGear/fgms/HEAD/src/server/FILES -------------------------------------------------------------------------------- /src/server/daemon.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlightGear/fgms/HEAD/src/server/daemon.cxx -------------------------------------------------------------------------------- /src/server/daemon.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlightGear/fgms/HEAD/src/server/daemon.hxx -------------------------------------------------------------------------------- /src/server/fg_cli.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlightGear/fgms/HEAD/src/server/fg_cli.cxx -------------------------------------------------------------------------------- /src/server/fg_cli.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlightGear/fgms/HEAD/src/server/fg_cli.hxx -------------------------------------------------------------------------------- /src/server/fg_common.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlightGear/fgms/HEAD/src/server/fg_common.hxx -------------------------------------------------------------------------------- /src/server/fg_config.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlightGear/fgms/HEAD/src/server/fg_config.cxx -------------------------------------------------------------------------------- /src/server/fg_config.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlightGear/fgms/HEAD/src/server/fg_config.hxx -------------------------------------------------------------------------------- /src/server/fg_geometry.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlightGear/fgms/HEAD/src/server/fg_geometry.cxx -------------------------------------------------------------------------------- /src/server/fg_geometry.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlightGear/fgms/HEAD/src/server/fg_geometry.hxx -------------------------------------------------------------------------------- /src/server/fg_list.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlightGear/fgms/HEAD/src/server/fg_list.cxx -------------------------------------------------------------------------------- /src/server/fg_list.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlightGear/fgms/HEAD/src/server/fg_list.hxx -------------------------------------------------------------------------------- /src/server/fg_server.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlightGear/fgms/HEAD/src/server/fg_server.cxx -------------------------------------------------------------------------------- /src/server/fg_server.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlightGear/fgms/HEAD/src/server/fg_server.hxx -------------------------------------------------------------------------------- /src/server/fg_tracker.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlightGear/fgms/HEAD/src/server/fg_tracker.cxx -------------------------------------------------------------------------------- /src/server/fg_tracker.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlightGear/fgms/HEAD/src/server/fg_tracker.hxx -------------------------------------------------------------------------------- /src/server/fg_util.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlightGear/fgms/HEAD/src/server/fg_util.cxx -------------------------------------------------------------------------------- /src/server/fg_util.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlightGear/fgms/HEAD/src/server/fg_util.hxx -------------------------------------------------------------------------------- /src/server/main.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlightGear/fgms/HEAD/src/server/main.cxx -------------------------------------------------------------------------------- /src/simgear/compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlightGear/fgms/HEAD/src/simgear/compiler.h -------------------------------------------------------------------------------- /src/simgear/debug/debug_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlightGear/fgms/HEAD/src/simgear/debug/debug_types.h -------------------------------------------------------------------------------- /src/simgear/debug/logstream.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlightGear/fgms/HEAD/src/simgear/debug/logstream.cxx -------------------------------------------------------------------------------- /src/simgear/debug/logstream.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlightGear/fgms/HEAD/src/simgear/debug/logstream.hxx -------------------------------------------------------------------------------- /src/simgear/math/SGEuler.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlightGear/fgms/HEAD/src/simgear/math/SGEuler.cxx -------------------------------------------------------------------------------- /src/simgear/math/SGEuler.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlightGear/fgms/HEAD/src/simgear/math/SGEuler.hxx -------------------------------------------------------------------------------- /src/simgear/math/SGMath.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlightGear/fgms/HEAD/src/simgear/math/SGMath.hxx -------------------------------------------------------------------------------- /src/simgear/misc/stdint.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlightGear/fgms/HEAD/src/simgear/misc/stdint.hxx -------------------------------------------------------------------------------- /version: -------------------------------------------------------------------------------- 1 | 0.13.10 2 | --------------------------------------------------------------------------------