From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on inbox.vuxu.org X-Spam-Level: X-Spam-Status: No, score=-0.1 required=5.0 tests=DKIM_SIGNED,DKIM_VALID, DKIM_VALID_AU,T_SCC_BODY_TEXT_LINE autolearn=ham autolearn_force=no version=3.4.4 Received: (qmail 31104 invoked from network); 11 Dec 2023 20:37:21 -0000 Received: from 9front.inri.net (168.235.81.73) by inbox.vuxu.org with ESMTPUTF8; 11 Dec 2023 20:37:21 -0000 Received: from mimir.eigenstate.org ([206.124.132.107]) by 9front; Mon Dec 11 15:36:14 -0500 2023 Received: from mimir.eigenstate.org (localhost [127.0.0.1]) by mimir.eigenstate.org (OpenSMTPD) with ESMTP id a332eb76 for <9front@9front.org>; Mon, 11 Dec 2023 12:36:13 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=eigenstate.org; h= message-id:to:subject:date:from:in-reply-to:mime-version :content-type:content-transfer-encoding; s=mail; bh=yeZ/3v05M2Oy GJ+vqJ3xpEMzq9Y=; b=HHiti4Ok0/XVbFHJck32Mb/1JF55qFEeuvFK/xHc5lXc qMOufo4UGMD9DeAO6Z4s0oQKN/1V1I9Q7h1hT5jZKp8zccokeGAToMazYbBT2CPi f/flcRqIVBDlbago2BjGLNHK/iTD2smk0Vfb3oeIY69HC5iCNVpAWDYGLhuBPVA= DomainKey-Signature: a=rsa-sha1; c=nofws; d=eigenstate.org; h=message-id :to:subject:date:from:in-reply-to:mime-version:content-type :content-transfer-encoding; q=dns; s=mail; b=WHnctkRIUraIKmZro+Y G8fbDWBJzGiQdkJ/z3gg/VuQZSLSYq1l+QTk8uzdDOW2DdxZfpBRdIXh0M5SCkSU oxdVr5NG+2qQAXOK273f1hzHS2i3lWsD3ayrxaYmRuBQRHQX3I/bQEFpVj2QJ4T8 0k39VuaXakEybnBwzJck5nxs= Received: from abbatoir (pool-108-6-24-2.nycmny.fios.verizon.net [108.6.24.2]) by mimir.eigenstate.org (OpenSMTPD) with ESMTPSA id d959b64b (TLSv1.2:ECDHE-RSA-AES256-SHA:256:NO) for <9front@9front.org>; Mon, 11 Dec 2023 12:36:12 -0800 (PST) Message-ID: <36EE81F372BF8C1F8A1E364884ACF95F@eigenstate.org> To: 9front@9front.org Date: Mon, 11 Dec 2023 15:36:11 -0500 From: ori@eigenstate.org In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: 7bit List-ID: <9front.9front.org> List-Help: X-Glyph: ➈ X-Bullshit: scale-out basic ORM over HTML standard hypervisor NoSQL STM frontend Subject: Re: [9front] [PATCH 3/6] nusb/ptp: add mention to nusb man page and fix implementation per spec to start with transaction id 1, not 0. Reply-To: 9front@9front.org Precedence: bulk Wait, I retract that. Quoth Romano : > > Apple iPhones can now be used to transfer images. There is still an issue with the iPhone permission, wherein an actor has to be pretty quick on the trigger to Allow the connection from the iPhone side, but that would require a pause somewhere in the handshake that I did not have time to look into further. This patch at least allows the connection to succeed when permitted. > sessionId = getpid(); > + transId = 0; > if(ptprpc(nil, OpenSession, 1, sessionId) < 0) Setting transid=0 here means that when we enter vptprpc, we do: t = transId++; ... PUT4(rpc.transid, t); which will put *0* into the transaction ID. Am I missing something here?