recv-internal.h 528 B

1234567891011121314151617181920
  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_INTERNAL_H
  9. #define ZMAP_RECV_INTERNAL_H
  10. #include <stdint.h>
  11. void handle_packet(uint32_t buflen, const uint8_t *bytes);
  12. void recv_init();
  13. void recv_packets();
  14. void recv_cleanup();
  15. #endif /* ZMAP_RECV_INTERNAL_H */