start.hpp 241 B

1234567891011
  1. #ifndef __START_HPP__
  2. #define __START_HPP__
  3. #include "net.hpp"
  4. // Once all the networking is set up, start doing whatever we were asked
  5. // to do on the command line
  6. void start(NetIO &netio, char **args);
  7. extern int epoch_duration;
  8. #endif