AROS: getting closer to link. only a handful of missing symbols now
[deb_libnfs.git] / examples / nfsclient-listservers.c
CommitLineData
552c7665
RS
1/*
2 Copyright (C) by Ronnie Sahlberg <ronniesahlberg@gmail.com> 2011
3
4 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation; either version 3 of the License, or
7 (at your option) any later version.
8
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
13
14 You should have received a copy of the GNU General Public License
15 along with this program; if not, see <http://www.gnu.org/licenses/>.
16*/
17
18/* Example program showing sync interface to probe for all local servers
19 */
20
21#include <stdio.h>
552c7665 22#include <stdlib.h>
763cd6e3 23#include "libnfs-zdr.h"
552c7665 24#include "libnfs.h"
552c7665
RS
25
26
27int main(int argc _U_, char *argv[] _U_)
28{
29 struct nfs_server_list *srvrs;
30 struct nfs_server_list *srv;
31
32 srvrs = nfs_find_local_servers();
33 for (srv=srvrs; srv; srv = srv->next) {
34 printf("NFS SERVER @ %s\n", srv->addr);
35 }
36 free_nfs_srvr_list(srvrs);
37 return 0;
38}