* Remove IPv4 server code from WebCit in trunk. Client code has not yet been convert...
[citadel.git] / webcit / locate_host.c
1 /*
2  * $Id$
3  *
4  * Given a socket, supply the name of the host at the other end.
5  *
6  * Copyright (c) 1996-2010 by the citadel.org team
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License as published by
10  * the Free Software Foundation; either version 3 of the License, or
11  * (at your option) any later version.
12  *
13  * This program is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  * GNU General Public License for more details.
17  *
18  * You should have received a copy of the GNU General Public License
19  * along with this program; if not, write to the Free Software
20  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
21  */
22
23 #include "webcit.h"
24
25 /*
26  * IPv4/IPv6 locate_host()
27  */
28 void locate_host(StrBuf *tbuf, int client_socket)
29 {
30         struct sockaddr_in6 clientaddr;
31         unsigned int addrlen = sizeof(clientaddr);
32         char clienthost[NI_MAXHOST];
33         char clientservice[NI_MAXSERV];
34
35         getpeername(client_socket, (struct sockaddr *)&clientaddr, &addrlen);
36         getnameinfo((struct sockaddr *)&clientaddr, addrlen,
37                 clienthost, sizeof(clienthost),
38                 clientservice, sizeof(clientservice),
39                 0
40         );
41
42         StrBufAppendBufPlain(tbuf, clienthost, -1, 0);
43 }