* najool * | 1 Sep 2007 02:11
Picon
Favicon

RE: manet Digest, Vol 40, Issue 37


 Dear all,
 
I'm beginner in ns-2 simulation.. i would like to use it in my master project to test my new developed energy efficient protocol for WSN
 
I'm interesting in WSN routing protocol simulation on ns-2, and I need to find such code.. my question is about running such code on windows (cygwin) platform?
 
 
 I'm happy to know what you think about this.. also if there is any resources, advices or any other direction about simulation in ns-2 and its result it's will be very useful
 
Best Regards,
-Najla

 


 

From:  manet-request <at> ietf.org
Reply-To:  manet <at> ietf.org
To:  manet <at> ietf.org
Subject:  manet Digest, Vol 40, Issue 37
Date:  Fri, 31 Aug 2007 12:00:23 -0400
>Send manet mailing list submissions to
> manet <at> ietf.org
>
>To subscribe or unsubscribe via the World Wide Web, visit
> https://www1.ietf.org/mailman/listinfo/manet
>or, via email, send a message with subject or body 'help' to
> manet-request <at> ietf.org
>
>You can reach the person managing the list at
> manet-owner <at> ietf.org
>
>When replying, please edit your Subject line so it is more specific
>than "Re: Contents of manet digest..."
>
>
> Today's Topics:
>
>    1. RE: MPR election in standard OLSR and Clusterhead Election
>       inHierarchical OLSR (Aisling ODriscoll)
>
>
>----------------------------------------------------------------------
>
>Message: 1
>Date: Fri, 31 Aug 2007 11:23:24 +0100
>From: "Aisling ODriscoll" <Aisling.ODriscoll <at> cit.ie>
>Subject: RE: [manet] MPR election in standard OLSR and Clusterhead
> Election inHierarchical OLSR
>To: <manet <at> ietf.org>
>Message-ID: <07C0AAD24E652548B1F528DED7C034FD02572DDB <at> sf-1.cit.ie>
>Content-Type: text/plain; charset="us-ascii"
>
>Thanks to both Chris and Mathieu for the replies.
>
>-----Original Message-----
>From: Dearlove, Christopher (UK) [mailto:Chris.Dearlove <at> baesystems.com]>Sent: 30 August 2007 15:45
>To: Aisling ODriscoll; manet <at> ietf.org
>Subject: RE: [manet] MPR election in standard OLSR and Clusterhead
>Election inHierarchical OLSR
>
>
>Comment with >. I don't have a comment on point 2.
>
>1. I read in the OLSR draft that MPR set recalculation should occur
>when changes are detected in the symmetric and symmetric strict 2 hop
>neighbourhood. So is it correct to say that during network setup and
>discovery when HELLO messages are received with asymmetric and
>subsequently symmetric neighbours in the HELLO message data, that the
>MPR for that node is computed every time i.e. MPR computation is
>happening upon receipt of every HELLO msg that causes a neighbourhood
>change? It continues to do this until a stable set of MPRs are found
>(assuming no mobil ity at the moment)? I had originally thought that MPR
>calculation occurs after a pre-defined period of time.
>
> > It is defined as recalculating it every time. But waiting for a
>(short) period after a node
> > starts up is, I think, perfectly reasonable behaviour. Note that
>there's no reason to calculate
> > an MPR Set other than to report it in a HELLO message, but on the
>other hand a recalculated
> > MPR Set may be a reason to send a HELLO message.
>
>********************************************************************
>This email and any attachments are confidential to the intended
>recipient and may also be privileged. If you are not the intended
>recipient please delete it from your system and notify the sender.
>You should not copy it or use it for any purpose nor disclose or>distribute its contents to any other person.
>********************************************************************
>
>
>
>
>
>------------------------------
>
>_______________________________________________
>manet mailing list
>manet <at> ietf.org
>https://www1.ietf.org/mailman/listinfo/manet
>
>
>End of manet Digest, Vol 40, Issue 37
>*************************************

Don't just search. Find. MSN Search Check out the new MSN Search!
_______________________________________________
manet mailing list
manet <at> ietf.org
https://www1.ietf.org/mailman/listinfo/manet
Teco Boot | 5 Sep 2007 19:21
Picon

RE: Distance Maximum Size 8-bits or 16-bits?

I thought about using 8-bit exponential link metrics combined with a 8-bit
distance, used as exponential path metric. I used the (16+a)*2^b-15 format,
as I still highly prefer this one for being used by OLSR.

I performed all possible calculations and checked the outcome. I used the
following algorithm:
 1) Uncompress IncomingDistance
 2) Add (linear) link metric 
 2) Compress outcome into exponential path metric
 4) The AdvertizedDistance is maximum of:
    - IncomingDistance + 1
    - CalculatedDistance (step 3)
Although is seems to work, there are some problems.

One problem is the decreased number of hops supported. This problem occurs
when nodes use increments larger than one, which is allowed in the current
DYMO draft text also.
Supporting 255 hops, each with a link metric of 254, the linear path metric
is 250.671.375, using (16+a)*2^b-15 the value 381 is needed. So an
exponential 9-bit distance would handle this, using a 5-bit exponent.
Many hops with such a high link metric would not be needed, but what about 2
links with metric 557.041 (exponential value: 241)? Or one link with metric
557.041 and 15 high speed links?

Another problem is defining the in- or outbound interface link metric. When
not specified, one implementation would select inbound, another
implementation selects outbound. In the same MANET, one direction would have
a double counted high metric link; the opposite direction does not use the
metric for this link at all. 
We have a similar discussion on OLSR inbound or outbound interface metrics
for path calculation.

And another problem is the loss of accuracy. When in the path a high metric
link is present, path calculation before this link is accurate, after
passing the link it is not. In the opposite direction, loss of accuracy is
on the other part of the path. 

                +----+       321      +----+ 
                | R1 |----------------| R4 |
                +----+                +----+    
                /  |                    | \
              1/   |                    |  \1
              /    |                    |   \
           +----+  |                    |  +----+
           | R2 |  |11                11|  | R5 |
           +----+  |                    |  +----+
               \   |                    |   /
               1\  |                    |  /1
                 \ |                    | /
                +----+                +----+
                | R3 |                | R6 |
                +----+                +----+

In this example, the path from R3 to R6 is R3-R2-R1-R4-R6. Opposite
direction is R6-R5-R4-R1-R3. Note that the WPF path is chosen after the high
metric link. Link state protocols would select the best path:
R3-R2-R1-R4-R5-R6. 
In practice, the effect of the problem would not be that annoying, as the
metric is to be used to select a path around the "real bad link" in the
first place. But IMHO it is a bad behavior of the protocol and it needs to
be solved.

Teco.

> -----Original Message-----
> From: Ian Chakeres [mailto:ian.chakeres <at> gmail.com]
> Sent: vrijdag 17 augustus 2007 19:20
> To: manet
> Subject: [manet] Distance Maximum Size 8-bits or 16-bits?
> 
> I wanted to ask everyone if they have an opinion about the maximum
> distance size in DYMO.
> 
> Do you think 8-bits are sufficient (i.e. 256 values)? Or are 16-bits
> required?
> 
> Please let me know your opinion. In the absence of responses I will
> assume 8-bits are enough.
> Ian Chakeres
> 
> 
> _______________________________________________
> manet mailing list
> manet <at> ietf.org
> https://www1.ietf.org/mailman/listinfo/manet
Ian Chakeres | 6 Sep 2007 09:00
Picon

Request to publish draft-ietf-manet-jitter-02.txt - write-up included

I would like to request that draft-ietf-manet-jitter-02.txt be
published. I am the shepherding WG chair.
Ian Chakeres

===WRITE-UP===

   1. Have the chairs personally reviewed this version of the Internet
Draft (ID), and in particular, do they believe this ID is ready to
forward to the IESG for publication?

YES.

   2. Has the document had adequate review from both key WG members
and key non-WG members? Do you have any concerns about the depth or
breadth of the reviews that have been performed?

YES the ID has been reviewed. NO there is no concern about the reviews.

   3. Do you have concerns that the document needs more review from a
particular (broader) perspective (e.g., security, operational
complexity, someone familiar with AAA, etc.)?

NO.

   4. Do you have any specific concerns/issues with this document that
you believe the ADs and/or IESG should be aware of? For example,
perhaps you are uncomfortable with certain parts of the document, or
have concerns whether there really is a need for it. In any event, if
your issues have been discussed in the WG and the WG has indicated it
that it still wishes to advance the document, detail those concerns in
the write-up.

NO.

   5. How solid is the WG consensus behind this document? Does it
represent the strong concurrence of a few individuals, with others
being silent, or does the WG as a whole understand and agree with it?

STRONG - Several other WG documents contain references to this ID.

   6. Has anyone threatened an appeal or otherwise indicated extreme
discontent? If so, please summarize the areas of conflict in separate
email to the Responsible Area Director.

NO.

   7. Have the chairs verified that the document adheres to all of the
ID Checklist items ?

YES.

   8. Is the document split into normative and informative references?
Are there normative references to IDs, where the IDs are not also
ready for advancement or are otherwise in an unclear state? (note here
that the RFC editor will not publish an RFC with normative references
to IDs, it will delay publication until all such IDs are also ready
for publication as RFCs.)

YES.

   9. What is the intended status of the document? (e.g., Proposed
Standard, Informational?)

Informational.

  10. For Standards Track and BCP documents, the IESG approval
announcement includes a write-up section with the following sections:

          * Technical Summary

This document provides recommendations for jittering (randomly
modifying timing) of control traffic transmissions in MANET routing
protocols to reduce the probability of packet collisions.

          * Working Group Summary

This document contains information that was originally in OLSRv2. It
was pulled out and put in its own document, since it is applicable to
many MANET WG protocols (e.g. NHDP, OLSRv2, and DYMO) to avoid
collisions.

          * Protocol Quality

There are a number of IETF documents/protocols that discuss introduced
jitter; these documents are cited. Though jitter is discussed in these
documents, in the context of MANET jitter should be handled in a
slightly different manner. This document goes into more details about
how jitter should be employed in MANETs.
Dearlove, Christopher (UK | 6 Sep 2007 14:28

RE: Distance Maximum Size 8-bits or 16-bits?


From: Teco Boot [mailto:teco <at> inf-net.nl] 
> Another problem is defining the in- or outbound interface link metric.
When
> not specified, one implementation would select inbound, another
> implementation selects outbound. In the same MANET, one direction
would have
> a double counted high metric link; the opposite direction does not use
the
> metric for this link at all.
> 
> We have a similar discussion on OLSR inbound or outbound interface
metrics
> for path calculation.

No to the latter point (I don't know about DYMO). The whole
rationale for having directional link metrics in the first
place (in draft-dearlove-olsrv2-metrics-00) is that which
direction link metric must be (and in that document is)
specified.

Of course you may end up selecting different paths A to B
and B to A, but that can and does happen with minimum hop
paths too.

********************************************************************
This email and any attachments are confidential to the intended
recipient and may also be privileged. If you are not the intended
recipient please delete it from your system and notify the sender.
You should not copy it or use it for any purpose nor disclose or
distribute its contents to any other person.
********************************************************************
shapour judy | 6 Sep 2007 15:19
Picon
Favicon

helping

Hi. I want to emplementing ODMRP in OPNET but I have not any code.
can you help me.
best regards.

Sick sense of humor? Visit Yahoo! TV's Comedy with an Edge to see what's on, when.
_______________________________________________
manet mailing list
manet <at> ietf.org
https://www1.ietf.org/mailman/listinfo/manet
Li Li | 7 Sep 2007 20:44
Picon

CfP MP2P'08: 5th IEEE International Workshop on Mobile Peer-to-Peer Computing (MP2P'08)

---------------------------------------------------------------------
* Apologies for possible multiple copies
---------------------------------------------------------------------
The 5th IEEE International Workshop on Mobile Peer-to-Peer Computing (MP2P'08)
http://www-info3.informatik.uni-wuerzburg.de/mp2p2008
Hong Kong, March 17-21, 2008
In conjunction with the 6th IEEE International Conference on
Pervasive Computing and Communications (PerCom'08)
http://www.percom.org/
----------------------------------------------------------------------
Peer-to-Peer (P2P) computing is a networking and distributed computing
paradigm which allows the sharing of computing resources and services by
direct, symmetric interaction between computers.
MP2P'08 is intended to serve as a continuing forum for scientists and
engineers in academia and industry to exchange and discuss their
experiences, new ideas, and research results about all aspects of mobile P2P
computing and communications.
The principal theme of MP2P'08 is the peer-to-peer paradigm as used in
mobile ad hoc networks (MANETS), sensor networks, and large-scale
heterogeneous overlays. Topics of particular interest include, but are not
limited to:
- Peer-to-peer overlays for MANETs and sensor networks
- Hybrid P2P architectures for integrated MANETs and wide-area networks
- Large-scale heterogeneous P2P systems
- Mobility in federated overlay architectures
- Impact of network mobility on P2P systems and services (mobile IP / MANET)
- P2P-based information sensing and fusion
- MP2P performance & measurement studies
- Semantic routing & overlay routing in MP2P
- Delay tolerant MP2P systems
- Resource and service discovery in MP2P
- Resource exchange mechanisms in MP2P
- Peer access and control in mobile environment
- Data exchange and rendering techniques for mobile P2P devices
- Secure communication protocols for MP2P
- Nature-inspired algorithms for MP2P
- Novel MP2P applications & services
- Theoretical issues on mobile information diffusion
- MP2P SIP
- MP2P messaging systems, monitoring systems, searching systems, games, etc.
- Location dependent MP2P services
- MP2P over different bearer services: 2.5/3G (GPRS/UMTS) / 802.11 (WLAN)
- MP2P & operator/provider requirements
- Reliability and carrier-grade performance of MP2P services

Paper Submission:
-----------------
Papers must be written in English and should not exceed 5 pages in IEEE
proceedings style.
* Upload of the paper. Only in pdf format
Submission implies the willingness of at least one of the authors to
register and present the paper. All submissions will be reviewed and
selected based on their originality of the paper. Accepted papers must be
presented at the workshop and will appear in a combined PerCom 2008 workshop
proceedings published by IEEE Computer Society Press. Paper must not be
submitted elsewhere.
Authors that present a system in their paper are highly encouraged to
demonstrate also the system in the demo session of the workshop.

Important Dates:
----------------
Papers due: 5pm EST, September 29, 2007
Notification of acceptance November 25, 2007
Camera-ready papers due December 22, 2007

Organizing Committee, Program Co-chairs:
----------------------------------------
Kurt Tutschku, Department of Distributed Systems, University of Wuerzburg, Germany.
John Buford, Avaya Labs, USA.
Li Li, Communications Research Center Canada, Canada.

Steering Board
--------------
- Frank-Uwe Andersen, Siemens Communications, Berlin, Germany.
- Jiannong Cao, Department of Computing, Hong Kong Polytechnic University.
- Y. Charlie Hu, School of Electrical and Computer Engineering, Purdue University
- Cecilia Mascolo, Department of Computer Science, University College London
- Maria Papadopouli, Department of Computer Science, University of North Carolina at Chapel Hill

Publicity Chair
---------------
Kurt Tutschku, Department of Distributed Systems, University of Wuerzburg,
Germany

Program Committee Members:
--------------------------
John Buford, Avaya Labs, USA.
Jiannong Cao, Department of Computing, Hong Kong Polytechnic University
Hermann de Meer, Department of Computer Networks & Computer Communications, University of Passau, Germany.
Franca Delmastro, CNR-IIT ,Pisa, Italy.
Krishna Kishore Dhara, Avaya Labs Research, Lincroft, NJ, USA.
Babak Esfandiari, Carleton University, Canada.
Stephen Hailes, Department of Computer Science, University College of London, UK
Y. Charlie Hu, School of Electrical and Computer Engineering, Purdue University.
Norihiro Ishikawa, NTT Docomo, Japan.
Valerie Issarny, INRIA, France
Wolfgang Kellerer, DoCoMo DoCoMo Communications Laboratories Europe, Germany.
Mario Kolberg, University of Sterling, UK.
Thomas Kunz, Dept. of Systems and Comp. Engineering, Carleton University, Canada.
Li Li, Communication Research Center Canada, Canada
Christoph Lindemann, University of Leipzig, Germany.
George Roussos, School of Computer Science and Information Systems, Birkbeck College, University of London, UK.
Jochen Schiller, Institute of Computer Science, FU Berlin, Germany.
Hans-Peter Schwefel, Department of Communication Technology, Aalborg University, Denmark.
Shervin Shirmohammadi, School of Information Technology and Engineering (SITE), University of Ottawa, Canada.
Kurt Tutschku, Department of Distributed Systems, University of Würzburg, Germany.
Danny Tsang, The Hong Kong University of Science and Technology.
Klaus Wehrle, Distributed Systems Group, RWTH Aachen, Germany.
Chansu Yu, Dept. Of Electrical and Computer Engineering, Cleveland State University, Cleveland, OH, USA.

_______________________________________________
manet mailing list
manet <at> ietf.org
https://www1.ietf.org/mailman/listinfo/manet
Ian Chakeres | 8 Sep 2007 11:58
Picon

Nomcom 2007-8: Nominations Close on Sep 10, 2007

---------- Forwarded message ----------
From: Lakshminath Dondeti <ldondeti <at> qualcomm.com>

All,

Here is the link to nominate:
https://tools.ietf.org/group/nomcom/07/nominate

You may also send nominations or comments via email to nomcom07 <at> ietf.org
or ldondeti <at> qualcomm.com.

We have received very few nominations (1, 2, 2, 2, 3, 4, 8, 8, 19) and
even fewer accepted (1-2 people in each area, IAB acceptances is 4 at
last count).

I request the community to provide feedback on the incumbents (send
email or send notes via the web page).

1) If you think that the incumbent is doing a good job
     a) provide feedback AND
     b) nominate similar people just in case there is strong negative
feedback on the incumbent

2) If you think the incumbent can do somethings better
    a) provide feedback AND
    b) nominate someone who you think might do better

Candidates, if time commitment is the only issue, please indicate that
to the nomcom and accept the nominations.

thanks,
Lakshminath
Internet-Drafts | 10 Sep 2007 20:15
Picon
Favicon

I-D ACTION:draft-ietf-manet-packetbb-09.txt

A New Internet-Draft is available from the on-line Internet-Drafts 
directories.
This draft is a work item of the Mobile Ad-hoc Networks Working Group of the IETF.

	Title		: Generalized MANET Packet/Message Format
	Author(s)	: T. Clausen, et al.
	Filename	: draft-ietf-manet-packetbb-09.txt
	Pages		: 49
	Date		: 2007-9-10
	
This document specifies a multi-message packet format that may be
   used by mobile ad hoc network routing and other protocols.

A URL for this Internet-Draft is:
http://www.ietf.org/internet-drafts/draft-ietf-manet-packetbb-09.txt

To remove yourself from the I-D Announcement list, send a message to 
i-d-announce-request <at> ietf.org with the word unsubscribe in the body of 
the message. 
You can also visit https://www1.ietf.org/mailman/listinfo/I-D-announce 
to change your subscription settings.

Internet-Drafts are also available by anonymous FTP. Login with the 
username "anonymous" and a password of your e-mail address. After 
logging in, type "cd internet-drafts" and then 
"get draft-ietf-manet-packetbb-09.txt".

A list of Internet-Drafts directories can be found in
http://www.ietf.org/shadow.html 
or ftp://ftp.ietf.org/ietf/1shadow-sites.txt

Internet-Drafts can also be obtained by e-mail.

Send a message to:
	mailserv <at> ietf.org.
In the body type:
	"FILE /internet-drafts/draft-ietf-manet-packetbb-09.txt".
	
NOTE:	The mail server at ietf.org can return the document in
	MIME-encoded form by using the "mpack" utility.  To use this
	feature, insert the command "ENCODING mime" before the "FILE"
	command.  To decode the response(s), you will need "munpack" or
	a MIME-compliant mail reader.  Different MIME-compliant mail readers
	exhibit different behavior, especially when dealing with
	"multipart" MIME messages (i.e. documents which have been split
	up into multiple messages), so check your local documentation on
	how to manipulate these messages.

Below is the data which will enable a MIME compliant mail reader
implementation to automatically retrieve the ASCII version of the
Internet-Draft.
Attachment: message/external-body, 138 bytes
Attachment (draft-ietf-manet-packetbb-09.txt): message/external-body, 69 bytes
_______________________________________________
I-D-Announce mailing list
I-D-Announce <at> ietf.org
https://www1.ietf.org/mailman/listinfo/i-d-announce
Joseph Kopena | 11 Sep 2007 18:28
Picon

Comments on PacketBB Draft

Hi all,

The following are a few comments on Packet BB.  These are from draft
8, but looking at a diff against version 9, none of these comments
were effected by the changes.

I preface by saying that I have read much of the ongoing discussions
on ordering & bit saving but have not necessarily seen all of the
arguments.

Thx

-------
[ Content ]

These comments all refer to page 16, Constraints.

It's not clear what the value is in some of the constraints given
here, at least just from reading this document.

The only value I can see from the ordering constraint is that a
receiver can easily pull all the TLVs into an array and provide
efficient random access to it.  But for a hash or other map
implementation, that doesn't matter.  You also still need to sort on
the sending end, as well as check on the receiving end.

Relying on the numeric values of the TLVs sounds like something that
will be regretted sooner or later.  It attaches too much meaning to a
number that should just be a unique identifier.  It seems reasonable
that some protocols will want to impose an ordering over their
elements, but that should be up to the protocol and doesn't require
this to do so.

Specifically allowing child protocols to allow or disallow duplicate
TLVs is a good thing.

I don't see the value in requiring a given TLV type to be associated
with an address exactly once.  For possible implementations that I'm
thinking of, it sounds like (slightly) more of a hassle to check that
if it's already been associated than to just go ahead and mark the
address.  Ditto requiring redundant TLVs to be index sorted.

My personal plan for a PacketBB API provides more of a declarative or
relational view than I think these constraints imply.  I'm thinking of
the main access mechanisms as being a query for all TLVs associated
with an address, for all addresses associated with a TLV, or direct
access access to the received packet structure (i.e.  to loop over
each message, address blocks in a message, etc).  None of these
requires the constraints imposed here, and they sound like more of a
hindrance because now care has to be chosen in picking identifiers,
data has to be asserted in order or sorted, etc.

[ Typographical Notes ]

pg 15: "For an address block... block, where the first address has
position zero." should perhaps be clarified a bit: "For an address
block... block, where the first address in the block is position
zero."
-------

--

-- 
- joe kopena
  shelter from the storm
Dearlove, Christopher (UK | 11 Sep 2007 18:32

RE: Comments on PacketBB Draft


Please see previous discussion in this group in
which the value of these constraints has been
summarised extensively.

-----Original Message-----
From: Joseph Kopena [mailto:tjkopena <at> cs.drexel.edu] 
Sent: 11 September 2007 17:28
To: manet <at> ietf.org
Subject: [manet] Comments on PacketBB Draft

               *** WARNING ***

This mail has originated outside your organization,
either from an external partner or the Global Internet. 
     Keep this in mind if you answer this message. 

Hi all,

The following are a few comments on Packet BB.  These are from draft
8, but looking at a diff against version 9, none of these comments
were effected by the changes.

I preface by saying that I have read much of the ongoing discussions
on ordering & bit saving but have not necessarily seen all of the
arguments.

Thx

-------
[ Content ]

These comments all refer to page 16, Constraints.

It's not clear what the value is in some of the constraints given
here, at least just from reading this document.

The only value I can see from the ordering constraint is that a
receiver can easily pull all the TLVs into an array and provide
efficient random access to it.  But for a hash or other map
implementation, that doesn't matter.  You also still need to sort on
the sending end, as well as check on the receiving end.

Relying on the numeric values of the TLVs sounds like something that
will be regretted sooner or later.  It attaches too much meaning to a
number that should just be a unique identifier.  It seems reasonable
that some protocols will want to impose an ordering over their
elements, but that should be up to the protocol and doesn't require
this to do so.

Specifically allowing child protocols to allow or disallow duplicate
TLVs is a good thing.

I don't see the value in requiring a given TLV type to be associated
with an address exactly once.  For possible implementations that I'm
thinking of, it sounds like (slightly) more of a hassle to check that
if it's already been associated than to just go ahead and mark the
address.  Ditto requiring redundant TLVs to be index sorted.

My personal plan for a PacketBB API provides more of a declarative or
relational view than I think these constraints imply.  I'm thinking of
the main access mechanisms as being a query for all TLVs associated
with an address, for all addresses associated with a TLV, or direct
access access to the received packet structure (i.e.  to loop over
each message, address blocks in a message, etc).  None of these
requires the constraints imposed here, and they sound like more of a
hindrance because now care has to be chosen in picking identifiers,
data has to be asserted in order or sorted, etc.

[ Typographical Notes ]

pg 15: "For an address block... block, where the first address has
position zero." should perhaps be clarified a bit: "For an address
block... block, where the first address in the block is position
zero."
-------

--

-- 
- joe kopena
  shelter from the storm

_______________________________________________
manet mailing list
manet <at> ietf.org
https://www1.ietf.org/mailman/listinfo/manet

********************************************************************
This email and any attachments are confidential to the intended
recipient and may also be privileged. If you are not the intended
recipient please delete it from your system and notify the sender.
You should not copy it or use it for any purpose nor disclose or
distribute its contents to any other person.
********************************************************************

Gmane