mycodaemon.c 215 B

1234567891011121314151617
  1. /*
  2. * mycodaemon.c
  3. */
  4. #include "../src/myco-daemon.c"
  5. int main() {
  6. if (myco_daemon_start(getpid(), "192.168.0.35", "192.168.0.10") == -1) {
  7. return EXIT_FAILURE;
  8. }
  9. return EXIT_SUCCESS;
  10. }