ipaccess: Default to port 3210 for the telnet session

No need to remember the CLI port of the BTS, it is static anyway
This commit is contained in:
Holger Hans Peter Freyther 2011-05-14 20:45:55 +02:00
parent 5083c2ab6d
commit 1465a8668d
1 changed files with 6 additions and 3 deletions

View File

@ -159,6 +159,7 @@ int main(int argc, char **argv) {
char buffer[512];
int rs;
int sock;
const char *port;
struct sockaddr_in addr;
struct pollfd pfd[2];
struct addrinfo *ai;
@ -166,17 +167,19 @@ int main(int argc, char **argv) {
struct termios tios;
/* check usage */
if (argc != 3) {
fprintf(stderr, "Usage:\n %s <host> <port>\n",
if (argc < 2) {
fprintf(stderr, "Usage:\n %s <host> [<port>]\n",
basename(argv[0]));
return 1;
}
port = argc > 2 ? argv[2] : "3210";
/* look up server host */
memset(&hints, 0, sizeof(hints));
hints.ai_family = AF_UNSPEC;
hints.ai_socktype = SOCK_STREAM;
if ((rs = getaddrinfo(argv[1], argv[2], &hints, &ai)) != 0) {
if ((rs = getaddrinfo(argv[1], port, &hints, &ai)) != 0) {
fprintf(stderr, "getaddrinfo() failed for %s: %s\n", argv[1],
gai_strerror(rs));
return 1;