X-Recipient: archive-cygwin AT delorie DOT com DomainKey-Signature: a=rsa-sha1; c=nofws; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:from:to:subject:date:message-id:references :in-reply-to:content-type:content-transfer-encoding :mime-version; q=dns; s=default; b=e1osyGmHdaVCA68EXCPa+hB1p/o+m Oq/0FGz7qslSWB8ZASWbCN8UCg4Tjp65AYP8NtuJ6whYcNrD/JHPUWjmMHqnnxgB gJTKNWJJ1IrwK90fhcPDvtIhpYY7zYrAB/NIbCbtyOE5+Z+bXUIL0/uerBVjWIS+ gfG213+3ph1zs4= DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:from:to:subject:date:message-id:references :in-reply-to:content-type:content-transfer-encoding :mime-version; s=default; bh=3jNgyIlX+juy+0r9PdPGo2j/pGk=; b=qVN 65NjnrCAJLJuYsXpZBFWN1FYd57dakj5Fs3E+YGjrb+cnsRuE9GloACgBaSWfKO8 JZJKGxibTCLqHIZEXhL0yXs3P01l2nvSDv3ihAazaoWuJ0unsewSY4WlSc6g6cMx t4icV1rVdg8uCsqp3mQg1KrKVXB2woKsPXAnvEvM= Mailing-List: contact cygwin-help AT cygwin DOT com; run by ezmlm List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: cygwin-owner AT cygwin DOT com Mail-Followup-To: cygwin AT cygwin DOT com Delivered-To: mailing list cygwin AT cygwin DOT com Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=1.9 required=5.0 tests=AWL,BAYES_50,CYGWIN_OWNER_BODY,GIT_PATCH_2,KAM_INFOUSMEBIZ,KAM_LAZY_DOMAIN_SECURITY,KB_WAM_FROM_NAME_SINGLEWORD,RCVD_IN_DNSWL_NONE autolearn=no version=3.3.2 spammy=rpc, Geisert, geisert, congrats X-HELO: mailrelay.dillinger.de From: "PAULUS, Raimund, TI-ABN" To: "cygwin AT cygwin DOT com" Subject: WG: RPC clnt_create() adress already in use Date: Tue, 21 Nov 2017 12:35:49 +0000 Message-ID: <59D90AF8D70E9740907BACDE2BCB520836B79134@RESW102.resdom01.local> References: <59D90AF8D70E9740907BACDE2BCB52083663B2F2 AT RESW102 DOT resdom01 DOT local> <61904960-a940-b179-0462-3d8d3ac23d71 AT maxrnd DOT com> In-Reply-To: <61904960-a940-b179-0462-3d8d3ac23d71@maxrnd.com> Content-Type: text/plain; charset="iso-8859-1" MIME-Version: 1.0 X-IsSubscribed: yes Content-Transfer-Encoding: 8bit X-MIME-Autoconverted: from quoted-printable to 8bit by delorie.com id vALCa6dI030239 Hello Mark, is there any news with respect to libtirpc? Very important: I need it in Cygwin 2.5.1. Raimund Paulus -----Ursprüngliche Nachricht----- Von: cygwin-owner AT cygwin DOT com [mailto:cygwin-owner AT cygwin DOT com] Im Auftrag von Mark Geisert Gesendet: Freitag, 29. September 2017 11:52 An: cygwin AT cygwin DOT com Betreff: Re: RPC clnt_create() adress already in use PAULUS, Raimund, TI-ABN wrote: > Hello Mark, > > i downloaded the sources of libtirpc from this url: https://sourceforge.net/projects/libtirpc/files/libtirpc/1.0.1/ and unpacked it in the local subdirectory libtirpc-1.0.1. > I had to make the following changes: > > libtirpc-1.0.1/src/clnt_bcast.c (because POLLRDNORM, POLLRDBAND are already defined in /usr/include/sys/poll.h) : > > --> #ifndef POLLRDNORM > --> # define POLLRDNORM 0x040 /* Normal data may be read. */ > --> # define POLLRDBAND 0x080 /* Priority data may be read. */ > --> #endif > > libtirpc-1.0.1/tirpc/rpc/xdr.h (typedefs where missed): > > --> #include > > --> typedef __uint64_t u_quad_t; > --> typedef __int64_t quad_t; > > > I linked the necessary source files with my testprogram: > > gcc -D__GLIBC__ -D__linux__ -I/c/dh-progs/tstdir/libtirpc-1.0.1/tirpc > \ tst_rpc.c \ /c/dh-progs/tstdir/libtirpc-1.0.1/src/clnt_bcast.c \ > /c/dh-progs/tstdir/libtirpc-1.0.1/src/clnt_dg.c \ > /c/dh-progs/tstdir/libtirpc-1.0.1/src/clnt_generic.c \ > /c/dh-progs/tstdir/libtirpc-1.0.1/src/clnt_perror.c \ > /c/dh-progs/tstdir/libtirpc-1.0.1/src/clnt_vc.c \ > /c/dh-progs/tstdir/libtirpc-1.0.1/src/rpc_callmsg.c \ > /c/dh-progs/tstdir/libtirpc-1.0.1/src/rpc_commondata.c \ > /c/dh-progs/tstdir/libtirpc-1.0.1/src/rpc_generic.c \ > /c/dh-progs/tstdir/libtirpc-1.0.1/src/rpc_prot.c \ > /c/dh-progs/tstdir/libtirpc-1.0.1/src/rpcb_clnt.c \ > /c/dh-progs/tstdir/libtirpc-1.0.1/src/rpcb_prot.c \ > /c/dh-progs/tstdir/libtirpc-1.0.1/src/xdr.c \ > /c/dh-progs/tstdir/libtirpc-1.0.1/src/xdr_array.c \ > /c/dh-progs/tstdir/libtirpc-1.0.1/src/xdr_mem.c \ > /c/dh-progs/tstdir/libtirpc-1.0.1/src/xdr_rec.c \ > /c/dh-progs/tstdir/libtirpc-1.0.1/src/xdr_reference.c \ > /c/dh-progs/tstdir/libtirpc-1.0.1/src/getnetconfig.c \ > /c/dh-progs/tstdir/libtirpc-1.0.1/src/getnetpath.c \ > /c/dh-progs/tstdir/libtirpc-1.0.1/src/auth_none.c \ > /c/dh-progs/tstdir/libtirpc-1.0.1/src/auth_unix.c \ > /c/dh-progs/tstdir/libtirpc-1.0.1/src/authunix_prot.c \ > /c/dh-progs/tstdir/libtirpc-1.0.1/src/mt_misc.c \ > /c/dh-progs/tstdir/libtirpc-1.0.1/src/debug.c \ -o > tst_rpc-libtirpc-1-0-1 > > The program works perfectly (no errors is test cases 1 and 2). > > I assume, there must be a difference between the downloaded lib-files and the Cygwin-libtirpc. Thank you Raimund for debugging this to the root cause. Cygwin claims to be providing libtirpc 1.0.1 so I suspect you're correct about the cause. I will figure out what the differences are and take the issue up with the Cygwin libtirpc maintainer. Congrats on solving the problem yourself! Thanks again, ..mark -- Problem reports: http://cygwin.com/problems.html FAQ: http://cygwin.com/faq/ Documentation: http://cygwin.com/docs.html Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple -- Problem reports: http://cygwin.com/problems.html FAQ: http://cygwin.com/faq/ Documentation: http://cygwin.com/docs.html Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple