send.h 445 B

123456789101112131415161718
  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 SEND_H
  9. #define SEND_H
  10. #include "iterator.h"
  11. #include "socket.h"
  12. iterator_t* send_init(void);
  13. int send_run(sock_t, shard_t*);
  14. #endif //SEND_H