1
0

AngelInit.h 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. /* vim: set expandtab ts=4 sw=4: */
  2. /*
  3. * You may redistribute this program and/or modify it under the terms of
  4. * the GNU General Public License as published by the Free Software Foundation,
  5. * either version 3 of the License, or (at your option) any later version.
  6. *
  7. * This program is distributed in the hope that it will be useful,
  8. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  10. * GNU General Public License for more details.
  11. *
  12. * You should have received a copy of the GNU General Public License
  13. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  14. */
  15. #ifndef AngelInit_H
  16. #define AngelInit_H
  17. #include "util/Linker.h"
  18. Linker_require("admin/angel/AngelInit.c")
  19. /**
  20. * Input:
  21. * {
  22. * "admin": {
  23. * "core": "/path/to/core/binary",
  24. * "bind": "127.0.0.1:12345",
  25. * "pass": "12345adminsocketpassword",
  26. * "user": "setUidToThisUser"
  27. * }
  28. * }
  29. * for example:
  30. * d5:admind4:core30:./build/admin/angel/cjdns-core4:bind15:127.0.0.1:123454:pass4:abcdee
  31. *
  32. /home/user/wrk/cjdns/build/admin/angel/cjdns-core
  33. * "user" is optional, if set the angel will setuid() that user's uid.
  34. */
  35. int AngelInit_main(int argc, char** argv);
  36. #endif