country.h 434 B

12345678910111213141516
  1. /* Copyright (c) 2001 Matej Pfajfar.
  2. * Copyright (c) 2001-2004, Roger Dingledine.
  3. * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
  4. * Copyright (c) 2007-2018, The Tor Project, Inc. */
  5. /* See LICENSE for licensing information */
  6. #ifndef TOR_COUNTRY_H
  7. #define TOR_COUNTRY_H
  8. #include "lib/cc/torint.h"
  9. /** A signed integer representing a country code. */
  10. typedef int16_t country_t;
  11. #define COUNTRY_MAX INT16_MAX
  12. #endif