util.h 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. /* util.h
  2. *
  3. * Wrapper functions and data structures
  4. *
  5. * Slitheen - a decoy routing system for censorship resistance
  6. * Copyright (C) 2017 Cecylia Bocovich (cbocovic@uwaterloo.ca)
  7. *
  8. * This program is free software: you can redistribute it and/or modify
  9. * it under the terms of the GNU General Public License as published by
  10. * the Free Software Foundation, version 3.
  11. *
  12. * This program is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. * GNU General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU General Public License
  18. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  19. *
  20. * Additional permission under GNU GPL version 3 section 7
  21. *
  22. * If you modify this Program, or any covered work, by linking or combining
  23. * it with the OpenSSL library (or a modified version of that library),
  24. * containing parts covered by the terms of the OpenSSL Licence and the
  25. * SSLeay license, the licensors of this Program grant you additional
  26. * permission to convey the resulting work. Corresponding Source for a
  27. * non-source form of such a combination shall include the source code
  28. * for the parts of the OpenSSL library used as well as that of the covered
  29. * work.
  30. */
  31. #ifndef UTIL_H
  32. #define UTIL_H
  33. #include <stddef.h>
  34. #include <stdint.h>
  35. #ifdef DEBUG_HS
  36. #define DEBUG_HS 1
  37. #else
  38. #define DEBUG_HS 0
  39. #endif
  40. #ifdef DEBUG_CRYPTO
  41. #define DEBUG_CRYPTO 1
  42. #else
  43. #define DEBUG_CRYPTO 0
  44. #endif
  45. /* Debugging macros */
  46. #define DEBUG_MSG(type, ...) \
  47. do { \
  48. if(type) printf(__VA_ARGS__); \
  49. } while(0)
  50. #define DEBUG_BYTES(type, ptr, len) \
  51. do { \
  52. if(type) { \
  53. for(int i=0; i < len; i++) printf("%02x ", ptr[i]); \
  54. printf("\n"); \
  55. } \
  56. } while(0)
  57. void *smalloc(size_t size);
  58. void *scalloc(size_t nmemb, size_t size);
  59. typedef struct queue_st queue;
  60. queue *init_queue();
  61. void enqueue(queue *list, void *data);
  62. void *dequeue(queue *list);
  63. void *peek(queue *list, int32_t n);
  64. void remove_queue(queue *list);
  65. #endif /* UTIL_H */