From patchwork Mon Apr 19 23:30:36 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: andrew hendry X-Patchwork-Id: 50499 X-Patchwork-Delegate: davem@davemloft.net Return-Path: X-Original-To: patchwork-incoming@ozlabs.org Delivered-To: patchwork-incoming@ozlabs.org Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by ozlabs.org (Postfix) with ESMTP id A7B6BB7D0E for ; Tue, 20 Apr 2010 09:30:46 +1000 (EST) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753192Ab0DSXam (ORCPT ); Mon, 19 Apr 2010 19:30:42 -0400 Received: from mail-pw0-f46.google.com ([209.85.160.46]:54257 "EHLO mail-pw0-f46.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752884Ab0DSXal (ORCPT ); Mon, 19 Apr 2010 19:30:41 -0400 Received: by pwj9 with SMTP id 9so3833988pwj.19 for ; Mon, 19 Apr 2010 16:30:40 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:subject:from:to:content-type :date:message-id:mime-version:x-mailer:content-transfer-encoding; bh=xAY0jpajREAuBakikVUdFlOl9UY6EKtnskqxCDD/JBk=; b=dzTUgv1PIWdqQD98sbbIA8590IKKvfzX5NY4TpxrtqcyM2DtafwZuRX02Vam3LCxe5 EcJh92405E5bI22izFScam25nwKGf5te4rf7pM9frtruMTKgAUeXTW3YmxLaYmG44h1z N321Gdz4ZuNogxfdHGAvzx868ZfrRt5+KIPSs= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=subject:from:to:content-type:date:message-id:mime-version:x-mailer :content-transfer-encoding; b=NlffKhEID+b5E0TEGjhu033GKlykOwTwDPO92H3bP0i0b9kDXDXNa8av+VaBnPRQ7T lUeJq/g6++XTVtSvCVkvNmyNKCAkEFvCmkFykebvPC+3SqNHR9JJOw0+7FZ5KISxZjkX UDIWDfz5V05Cxc+zExS2jZQ+MA5OCQUFsJh/k= Received: by 10.141.14.21 with SMTP id r21mr626720rvi.144.1271719840432; Mon, 19 Apr 2010 16:30:40 -0700 (PDT) Received: from [192.168.0.8] (210-84-37-193.dyn.iinet.net.au [210.84.37.193]) by mx.google.com with ESMTPS id 22sm5913839pzk.5.2010.04.19.16.30.38 (version=SSLv3 cipher=RC4-MD5); Mon, 19 Apr 2010 16:30:39 -0700 (PDT) Subject: [PATCHv2 7/7] X25: Update X25 interface documentation From: Andrew Hendry To: netdev@vger.kernel.org Date: Tue, 20 Apr 2010 09:30:36 +1000 Message-ID: <1271719836.2802.89.camel@ibex> Mime-Version: 1.0 X-Mailer: Evolution 2.28.1 Sender: netdev-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: netdev@vger.kernel.org Signed-off-by: Andrew Hendry --- Documentation/networking/x25-iface.txt | 16 ++++++++-------- 1 files changed, 8 insertions(+), 8 deletions(-) diff --git a/Documentation/networking/x25-iface.txt b/Documentation/networking/x25-iface.txt index 975cc87..78f662e 100644 --- a/Documentation/networking/x25-iface.txt +++ b/Documentation/networking/x25-iface.txt @@ -20,23 +20,23 @@ the rest of the skbuff, if any more information does exist. Packet Layer to Device Driver ----------------------------- -First Byte = 0x00 +First Byte = 0x00 (X25_IFACE_DATA) This indicates that the rest of the skbuff contains data to be transmitted over the LAPB link. The LAPB link should already exist before any data is passed down. -First Byte = 0x01 +First Byte = 0x01 (X25_IFACE_CONNECT) Establish the LAPB link. If the link is already established then the connect confirmation message should be returned as soon as possible. -First Byte = 0x02 +First Byte = 0x02 (X25_IFACE_DISCONNECT) Terminate the LAPB link. If it is already disconnected then the disconnect confirmation message should be returned as soon as possible. -First Byte = 0x03 +First Byte = 0x03 (X25_IFACE_PARAMS) LAPB parameters. To be defined. @@ -44,22 +44,22 @@ LAPB parameters. To be defined. Device Driver to Packet Layer ----------------------------- -First Byte = 0x00 +First Byte = 0x00 (X25_IFACE_DATA) This indicates that the rest of the skbuff contains data that has been received over the LAPB link. -First Byte = 0x01 +First Byte = 0x01 (X25_IFACE_CONNECT) LAPB link has been established. The same message is used for both a LAPB link connect_confirmation and a connect_indication. -First Byte = 0x02 +First Byte = 0x02 (X25_IFACE_DISCONNECT) LAPB link has been terminated. This same message is used for both a LAPB link disconnect_confirmation and a disconnect_indication. -First Byte = 0x03 +First Byte = 0x03 (X25_IFACE_PARAMS) LAPB parameters. To be defined.