[ns] how to store data at a node

2013-04-21 Thread tanmay abhang

can we store data at a node while simulating wired network?


[ns] Deadline extension: EMERGING 2013 || September 29 - October 3, 2013 - Porto, Portugal

2013-04-21 Thread Cristina Pascual


INVITATION:
 
=
 
Please consider to contribute to and/or forward to the appropriate groups the 
following opportunity to submit and publish original scientific results to 
EMERGING 2013.
 
The submission deadline is May 12, 2013.
 
Authors of selected papers will be invited to submit extended article versions 
to one of the IARIA Journals: http://www.iariajournals.org
 
=
 

== EMERGING 2013 | Call for Papers ===
 
CALL FOR PAPERS, TUTORIALS, PANELS
 
EMERGING 2013, The Fifth International Conference on Emerging Network 
Intelligence
 
September 29 - October 3, 2013 - Porto, Portugal
 

General page: http://www.iaria.org/conferences2013/EMERGING13.html
 
Call for Papers: http://www.iaria.org/conferences2013/CfPEMERGING13.html
 
- regular papers
 - short papers (work in progress)
 - posters
 
Submission page: http://www.iaria.org/conferences2013/SubmitEMERGING13.html
 
Submission deadline: May 12, 2013
 
Sponsored by IARIA, www.iaria.org
 Extended versions of selected papers will be published in IARIA Journals:  
http://www.iariajournals.org
 Print proceedings will be available via Curran Associates, Inc.: 
http://www.proceedings.com/9769.html
 Articles will be archived in the free access ThinkMind Digital Library: 
http://www.thinkmind.org
 
Please note the Poster and Work in Progress options.
 
The topics suggested by the conference can be discussed in term of concepts, 
state of the art, research, standards, implementations, running experiments, 
applications, and industrial case studies. Authors are invited to submit 
complete unpublished papers, which are not under review in any other conference 
or journal in the following, but not limited to, topic areas.
 
All tracks are open to both research and industry contributions, in terms of 
Regular papers, Posters, Work in progress, Technical/marketing/business 
presentations, Demos, Tutorials, and Panels.
 
Before submission, please check and comply with the Editorial rules: 
http://www.iaria.org/editorialrules.html
 

EMERGING 2013 Topics (topics and submission details: see CfP on the site)
 

Evolution of telecommunications network architectures
 
   Advanced communications systems; New configurable protocols stacks and 
real-time mechanisms; Applications and services for next-generation 
architectures; Scalability and manageability of network architectures; 
Opportunistic and cooperative communications; Next generation networks (NGN); 
Optical networks; Wireless networks, Mobile networks; Ad-Hoc, Sensor, Vehicle 
networks; Access, Residential, Last mile networks; Home, Body and Personal area 
Networks; Active networks; Self Organizing networks; Storage area networks; 
Peer-to-Peer and overlay networks; Network measurements and testbeds; 
Transmission technologies (e.g., Ultra Wideband)
 
Applications and services
 
   Peer-to-Peer applications and services; Web services; Mobile applications; 
Entertainment and games; Home automation; Surveillance, Home monitoring; 
Medical and health applications; e-commerce, m-commerce; Location-based 
services; Real-time and multimedia applications; Real-time services over IP
 
Networking and service differentiation
 
   Network design and planning; Network management and control; Traffic 
engineering; Traffic control, Flow control; Congestion and admission control; 
QoS support and Performance; Routing, Switching, QoS routing; Mobility 
management; Multicast; Service reliability, availability
 
Emerging networking
 
   Network coding; Visualization of network behavior; Semantic routing; Network 
flow processing; Cross-layer design and optimization; High-speed networking; 
Context-aware mobile networking
 
Advanced network elements
 
   Network processors; Content addressable memories; Multi-core processors; 
Context-aware reconfigurable devices; Portable and wearable devices; Mobile 
multimedia devices
 
Optimization
 
   Power optimization in data centers; Delay and fault tolerant networks; Video 
conferencing and telepresence systems; Resource optimization; Context-aware 
optimization
 
Quality
 
   Quality of service; Quality of performance; Quality of experience; Quality 
of data; Quality of modeling; Quality-oriented routing; Quality of context 
/degradation, trust, uncertainty, consistency/
 
Smartness
 
   Cognitive radio; Autonomic and dependable communications; Ambient systems; 
Identity and location in mobile environments; Smart homes; Brain-like 
networking and computing
 
Discovery
 
   Resource discovery; Service discovery; Content discovery; Flaws/anomaly 
discovery
 
Protection
 
   Anticipative control and management; Data protection strategies; 
Collaborative Internet attack containment; Micro-kernels and robustness
 
Security
 
   Trust and credential negotiations; Privacy; Intrusion prevention and 
containment; Security in virtualization approach; Architectural support for 
security; Security, privacy, and dependability; Security in 

Re: [ns] get a reference to a node from AODV [resolved].

2013-04-21 Thread jose nmrd

Hi Itishi, thx again for the reply, 
actually it appears that the problem that i have been stacked in for a month  
is that the function static Node* get_node_by_address(nsaddr_t);

is static so it can be called by itself independently of any object by using 
the class name and the scope resolution operator, 
so i can call it from the aodv.cc and then do the rest of the work.
thanks . 
Xoce.

Date: Sat, 20 Apr 2013 20:42:17 +0800
From: itish...@yahoo.com
Subject: Re: [ns] How to get a reference of a node from AODV?‏
To: jose-...@hotmail.com; ns-users@ISI.EDU

Hi Jose, Using the following function definition you can create object 
of the node class.now using the c_node object of the node class you can access 
methinds of the node class.  Node* c_node=Node::get_node_by_address(index);   
Regards,Itishi
From: jose nmrd jose-...@hotmail.com
 To: itishi saxena itish...@yahoo.com 
 Sent: Thursday, 18 April 2013 12:03 PM
 Subject: RE: [ns] How to get a reference of a node from AODV?‏
   



Hi Itishi and thanks for the reply,
i know i have to create objects to access them, but currently in the class 
AODV.cc there only one variable index of type nsaddr_t which represents the 
address of the node [nsaddr_tindex;// IP Address of 
this node] but i don't know how to get the whole structure of Node because with 
this variable index i can't access the attributes of the node. in other words 
how to access classes AODV.cc and Node.cc from one to another? just by making 
them friends? 
for
 example if i put: $ns node-config -adhocRouting AODV, 
if i have a node N0 i want to get access to it from the AODV attached to it. 
Thank you very much again.
Xoce.

Date: Thu, 18 Apr 2013 06:31:23 +0800
From: itish...@yahoo.com
Subject: Re: [ns] How to get a reference of a node from AODV?‏
To: jose-...@hotmail.com; ns-users@ISI.EDU

Hello Jose,

For getting access to the node attribut you have to play with node.cc inside 
common folder in ns-2.34.

It is basically how you
 access method of one class toanother in c++.

so you have two classes aodv.cc and node.cc

you have to create object of one of them to access methods and they have to be 
friend of each other.

I hope it will give you sufficient hint for your task.


Itishi


From: jose nmrd jose-...@hotmail.com

 To: ns-users@isi.edu ns-users@ISI.EDU 
 Sent: Wednesday, 17 April 2013 5:30 PM
 Subject: [ns] How to get a reference of a node from AODV?‏
   





Hi everyone,
here is the problem, i have added some 
code to the class Node to do some computations, i'm modifying the 
protocol AODV where i have to use the computations added in the class 
Node, but after looking at the class AODV composition there is just the 
address of the Node, not the reference to the whole structure of the 
Node. so my question is how to get the reference of the node that the 
AODV agent is associated to so that i can access the attributes and 
functions and of course my added code of the class Node? if any one can 
help,
 thx in advance
 .
Xoce.