recv.h 459 B

1234567891011121314151617
  1. /*
  2. * ZMap Copyright 2013 Regents of the University of Michigan
  3. *
  4. * Licensed under the Apache License, Version 2.0 (the "License"); you may not
  5. * use this file except in compliance with the License. You may obtain a copy
  6. * of the License at http://www.apache.org/licenses/LICENSE-2.0
  7. */
  8. #ifndef ZMAP_RECV_H
  9. #define ZMAP_RECV_H
  10. #include <pthread.h>
  11. int recv_update_stats(void);
  12. int recv_run(pthread_mutex_t *recv_ready_mutex);
  13. #endif /* ZMP_RECV_H */