diff options
author | Marco d'Itri <md@linux.it> | 2009-12-20 03:01:40 +0100 |
---|---|---|
committer | Marco d'Itri <md@linux.it> | 2013-03-30 02:31:38 +0100 |
commit | 15c8d523f76befe5128f2147c98730fd03b44dab (patch) | |
tree | f8edf6cbd2424ca8d2c0bd2c9190dfdd63ac53ed /whois.h | |
parent | e8806bc5090585fb90ca0f6a299ca013e4d61d11 (diff) | |
download | whois-15c8d523f76befe5128f2147c98730fd03b44dab.tar.gz |
Imported Debian version 5.0.0v5.0.0
Diffstat (limited to 'whois.h')
-rw-r--r-- | whois.h | 9 |
1 files changed, 5 insertions, 4 deletions
@@ -3,13 +3,13 @@ /* String sent to RIPE servers - MUST NOT BE LONGER THAN FIVE CHARACTERS! */ /* Do *NOT* change it if you don't know what you are doing! */ -#define IDSTRING "Md4.7" +#define IDSTRING "Md5.0" #define HIDE_DISABLED -2 -#define HIDE_UNSTARTED -1 +#define HIDE_NOT_STARTED -1 /* prototypes */ -const char *whichwhois(const char *); +const char *guess_server(const char *); const char *match_config_file(const char *); const char *whereas(const unsigned long); const char *whereas32(const unsigned long); @@ -24,6 +24,7 @@ int connect_with_timeout(int, const struct sockaddr *, socklen_t, int); void usage(void); void alarm_handler(int); void sighandler(int); +int japanese_locale(void); unsigned long myinet_aton(const char *); unsigned long asn32_to_long(const char *); int isasciidigit(const char); @@ -33,7 +34,7 @@ char *normalize_domain(const char *); char *convert_6to4(const char *); char *convert_teredo(const char *); char *convert_inaddr(const char *); -const char *handle_query(const char *server, const char *port, +void handle_query(const char *server, const char *port, const char *qstring, const char *fstring); void split_server_port(const char *const input, const char **server, const char **port); |