1 /* internal.h --- internal header file for gsasl
2 * Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007 Simon Josefsson
4 * This file is part of GNU SASL.
6 * This program is free software: you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation, either version 3 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program. If not, see <http://www.gnu.org/licenses/>.
36 #include <sys/types.h>
37 #include <sys/socket.h> /* for AF_INET */
38 #include <sys/select.h> /* select() */
44 #ifdef HAVE_SYS_TIME_H
45 # include <sys/time.h> /* select() */
48 # include <pwd.h> /* getpwnam */
50 #ifdef HAVE_NETINET_IN_H
51 # include <netinet/in.h>
60 #include "getaddrinfo.h"
69 # define setlocale(Category, Locale) /* empty */
71 #define _(String) gettext (String)
72 #define gettext_noop(String) String
73 #define N_(String) gettext_noop (String)
75 extern int writeln (const char *str
);
76 extern int readln (char **out
);
78 #include "gsasl_cmd.h"
79 extern struct gengetopt_args_info args_info
;
81 #endif /* _INTERNAL_H */