chiark / gitweb /
Disobedience login window now only remembers password etc if they
[disorder] / lib / client-common.c
CommitLineData
460b9539 1/*
2 * This file is part of DisOrder
0227f67d 3 * Copyright (C) 2004, 2005, 2006, 2007 Richard Kettlewell
460b9539 4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful, but
11 * WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
18 * USA
19 */
20
05b75f8d 21#include "common.h"
460b9539 22
460b9539 23#include <netinet/in.h>
24#include <sys/un.h>
460b9539 25#include <errno.h>
26#include <netdb.h>
27
28#include "log.h"
29#include "configuration.h"
30#include "client-common.h"
31#include "addr.h"
0227f67d 32#include "mem.h"
460b9539 33
0227f67d 34/** @brief Figure out what address to connect to
319d7107 35 * @param c Configuration to honor
0227f67d
RK
36 * @param sap Where to store pointer to sockaddr
37 * @param namep Where to store socket name
38 * @return Socket length, or (socklen_t)-1
0e4472a0 39 */
319d7107
RK
40socklen_t find_server(struct config *c,
41 struct sockaddr **sap, char **namep) {
0227f67d 42 struct sockaddr *sa;
460b9539 43 struct sockaddr_un su;
0227f67d 44 struct addrinfo *res = 0;
460b9539 45 char *name;
0227f67d 46 socklen_t len;
460b9539 47
48 static const struct addrinfo pref = {
66613034
RK
49 .ai_flags = 0,
50 .ai_family = PF_INET,
51 .ai_socktype = SOCK_STREAM,
52 .ai_protocol = IPPROTO_TCP,
460b9539 53 };
54
319d7107
RK
55 if(c->connect.n) {
56 res = get_address(&c->connect, &pref, &name);
460b9539 57 if(!res) return -1;
0227f67d
RK
58 sa = res->ai_addr;
59 len = res->ai_addrlen;
460b9539 60 } else {
319d7107 61 name = config_get_file2(c, "socket");
0227f67d 62 if(strlen(name) >= sizeof su.sun_path) {
460b9539 63 error(errno, "socket path is too long");
64 return -1;
65 }
66 memset(&su, 0, sizeof su);
67 su.sun_family = AF_UNIX;
0227f67d
RK
68 strcpy(su.sun_path, name);
69 sa = (struct sockaddr *)&su;
70 len = sizeof su;
460b9539 71 }
0227f67d
RK
72 *sap = xmalloc_noptr(len);
73 memcpy(*sap, sa, len);
74 if(namep)
75 *namep = name;
76 if(res)
77 freeaddrinfo(res);
78 return len;
460b9539 79}
80
81/*
82Local Variables:
83c-basic-offset:2
84comment-column:40
85fill-column:79
86indent-tabs-mode:nil
87End:
88*/