akmhoque | ba09474 | 2014-02-28 11:47:21 -0600 | [diff] [blame] | 1 | #include<iostream> |
| 2 | #include<cstdlib> |
| 3 | |
| 4 | |
| 5 | #include <ndn-cpp-dev/security/identity-certificate.hpp> |
| 6 | #include <ndn-cpp-dev/util/io.hpp> |
| 7 | |
| 8 | #include "nlsr.hpp" |
| 9 | #include "nlsr_im.hpp" |
| 10 | #include "nlsr_dm.hpp" |
| 11 | #include "utility/nlsr_tokenizer.hpp" |
| 12 | #include "nlsr_lsdb.hpp" |
| 13 | |
| 14 | namespace nlsr |
| 15 | { |
| 16 | |
akmhoque | 5a44dd4 | 2014-03-12 18:11:32 -0500 | [diff] [blame] | 17 | using namespace std; |
| 18 | using namespace ndn; |
akmhoque | ba09474 | 2014-02-28 11:47:21 -0600 | [diff] [blame] | 19 | |
akmhoque | 5a44dd4 | 2014-03-12 18:11:32 -0500 | [diff] [blame] | 20 | void |
| 21 | interestManager::processInterest( Nlsr& pnlsr, |
| 22 | const ndn::Name &name, |
| 23 | const ndn::Interest &interest) |
| 24 | { |
| 25 | cout << "<< I: " << interest << endl; |
| 26 | string intName=interest.getName().toUri(); |
| 27 | cout << "Interest Received for Name: "<< intName <<endl; |
| 28 | nlsrTokenizer nt(intName,"/"); |
| 29 | string chkString("info"); |
| 30 | if( nt.doesTokenExist(chkString) ) |
akmhoque | ba09474 | 2014-02-28 11:47:21 -0600 | [diff] [blame] | 31 | { |
akmhoque | 5a44dd4 | 2014-03-12 18:11:32 -0500 | [diff] [blame] | 32 | string nbr=nt.getTokenString(nt.getTokenPosition(chkString)+1); |
| 33 | cout <<"Neighbor: " << nbr <<endl; |
| 34 | processInterestInfo(pnlsr,nbr,interest); |
akmhoque | ba09474 | 2014-02-28 11:47:21 -0600 | [diff] [blame] | 35 | } |
akmhoque | 5a44dd4 | 2014-03-12 18:11:32 -0500 | [diff] [blame] | 36 | chkString="LSA"; |
| 37 | if( nt.doesTokenExist(chkString) ) |
akmhoque | ba09474 | 2014-02-28 11:47:21 -0600 | [diff] [blame] | 38 | { |
akmhoque | 5a44dd4 | 2014-03-12 18:11:32 -0500 | [diff] [blame] | 39 | processInterestLsa(pnlsr,interest); |
akmhoque | ba09474 | 2014-02-28 11:47:21 -0600 | [diff] [blame] | 40 | } |
akmhoque | 5a44dd4 | 2014-03-12 18:11:32 -0500 | [diff] [blame] | 41 | chkString="keys"; |
| 42 | if( nt.doesTokenExist(chkString) ) |
akmhoque | ba09474 | 2014-02-28 11:47:21 -0600 | [diff] [blame] | 43 | { |
akmhoque | 5a44dd4 | 2014-03-12 18:11:32 -0500 | [diff] [blame] | 44 | processInterestKeys(pnlsr,interest); |
akmhoque | ba09474 | 2014-02-28 11:47:21 -0600 | [diff] [blame] | 45 | } |
akmhoque | 5a44dd4 | 2014-03-12 18:11:32 -0500 | [diff] [blame] | 46 | } |
akmhoque | ba09474 | 2014-02-28 11:47:21 -0600 | [diff] [blame] | 47 | |
akmhoque | 5a44dd4 | 2014-03-12 18:11:32 -0500 | [diff] [blame] | 48 | void |
| 49 | interestManager::processInterestInfo(Nlsr& pnlsr, string& neighbor, |
| 50 | const ndn::Interest &interest) |
| 51 | { |
| 52 | if ( pnlsr.getAdl().isNeighbor(neighbor) ) |
akmhoque | ba09474 | 2014-02-28 11:47:21 -0600 | [diff] [blame] | 53 | { |
akmhoque | 5a44dd4 | 2014-03-12 18:11:32 -0500 | [diff] [blame] | 54 | Data data(ndn::Name(interest.getName()).appendVersion()); |
| 55 | data.setFreshnessPeriod(1000); // 10 sec |
| 56 | data.setContent((const uint8_t*)"info", sizeof("info")); |
| 57 | pnlsr.getKeyManager().signData(data); |
| 58 | cout << ">> D: " << data << endl; |
| 59 | pnlsr.getNlsrFace()->put(data); |
| 60 | int status=pnlsr.getAdl().getStatusOfNeighbor(neighbor); |
| 61 | if ( status == 0 ) |
| 62 | { |
| 63 | string intName=neighbor +"/"+"info"+ |
| 64 | pnlsr.getConfParameter().getRouterPrefix(); |
| 65 | expressInterest( pnlsr,intName,2, |
| 66 | pnlsr.getConfParameter().getInterestResendTime()); |
| 67 | } |
akmhoque | ba09474 | 2014-02-28 11:47:21 -0600 | [diff] [blame] | 68 | } |
akmhoque | 5a44dd4 | 2014-03-12 18:11:32 -0500 | [diff] [blame] | 69 | } |
akmhoque | ba09474 | 2014-02-28 11:47:21 -0600 | [diff] [blame] | 70 | |
akmhoque | 5a44dd4 | 2014-03-12 18:11:32 -0500 | [diff] [blame] | 71 | void |
| 72 | interestManager::processInterestLsa(Nlsr& pnlsr,const ndn::Interest &interest) |
| 73 | { |
| 74 | string intName=interest.getName().toUri(); |
| 75 | nlsrTokenizer nt(intName,"/"); |
| 76 | string chkString("LSA"); |
| 77 | string origRouter=nt.getTokenString(nt.getTokenPosition(chkString)+1, |
| 78 | nt.getTokenNumber()-3); |
| 79 | string lsTypeString=nt.getToken(nt.getTokenNumber()-2); |
| 80 | string lsSeqString=nt.getToken(nt.getTokenNumber()-1); |
| 81 | cout<<"Router Name: "<<origRouter<<endl; |
| 82 | cout<<"Ls Type : "<<lsTypeString<<endl; |
| 83 | cout<<"Ls Seq : "<<lsSeqString<<endl; |
| 84 | uint8_t interestedLsType; |
| 85 | uint32_t interestedLsSeqNo; |
| 86 | try |
akmhoque | ba09474 | 2014-02-28 11:47:21 -0600 | [diff] [blame] | 87 | { |
akmhoque | 5a44dd4 | 2014-03-12 18:11:32 -0500 | [diff] [blame] | 88 | interestedLsType=boost::lexical_cast<uint8_t>(lsTypeString); |
| 89 | interestedLsSeqNo=boost::lexical_cast<uint32_t>(lsSeqString); |
akmhoque | ba09474 | 2014-02-28 11:47:21 -0600 | [diff] [blame] | 90 | } |
akmhoque | 5a44dd4 | 2014-03-12 18:11:32 -0500 | [diff] [blame] | 91 | catch(std::exception &e) |
akmhoque | ba09474 | 2014-02-28 11:47:21 -0600 | [diff] [blame] | 92 | { |
akmhoque | 5a44dd4 | 2014-03-12 18:11:32 -0500 | [diff] [blame] | 93 | return; |
akmhoque | ba09474 | 2014-02-28 11:47:21 -0600 | [diff] [blame] | 94 | } |
akmhoque | 5a44dd4 | 2014-03-12 18:11:32 -0500 | [diff] [blame] | 95 | cout <<"Ls Type: "<<interestedLsType<<endl; |
| 96 | if( lsTypeString == "1" ) //Name Lsa |
akmhoque | ba09474 | 2014-02-28 11:47:21 -0600 | [diff] [blame] | 97 | { |
akmhoque | 5a44dd4 | 2014-03-12 18:11:32 -0500 | [diff] [blame] | 98 | processInterestForNameLsa(pnlsr, interest, |
| 99 | origRouter+"/"+lsTypeString, interestedLsSeqNo); |
| 100 | } |
| 101 | else if( lsTypeString == "2" ) //Adj Lsa |
| 102 | { |
| 103 | processInterestForAdjLsa(pnlsr, interest, |
| 104 | origRouter+"/"+lsTypeString, interestedLsSeqNo); |
| 105 | } |
| 106 | else if( lsTypeString == "3" ) //Cor Lsa |
| 107 | { |
| 108 | processInterestForCorLsa(pnlsr, interest, |
| 109 | origRouter+"/"+lsTypeString, interestedLsSeqNo); |
| 110 | } |
| 111 | else |
| 112 | { |
| 113 | cout<<"Unrecognized LSA Type :("<<endl; |
| 114 | } |
| 115 | } |
| 116 | |
| 117 | void |
| 118 | interestManager::processInterestForNameLsa(Nlsr& pnlsr, |
| 119 | const ndn::Interest &interest, |
| 120 | string lsaKey, uint32_t interestedlsSeqNo) |
| 121 | { |
| 122 | std::pair<NameLsa&, bool> nameLsa=pnlsr.getLsdb().getNameLsa(lsaKey); |
| 123 | if( nameLsa.second ) |
| 124 | { |
| 125 | if ( nameLsa.first.getLsSeqNo() >= interestedlsSeqNo ) |
| 126 | { |
akmhoque | ba09474 | 2014-02-28 11:47:21 -0600 | [diff] [blame] | 127 | Data data(ndn::Name(interest.getName()).appendVersion()); |
| 128 | data.setFreshnessPeriod(1000); // 10 sec |
akmhoque | 5a44dd4 | 2014-03-12 18:11:32 -0500 | [diff] [blame] | 129 | string content=nameLsa.first.getNameLsaData(); |
| 130 | data.setContent((const uint8_t*)content.c_str(),content.size()); |
akmhoque | ba09474 | 2014-02-28 11:47:21 -0600 | [diff] [blame] | 131 | pnlsr.getKeyManager().signData(data); |
akmhoque | 5a44dd4 | 2014-03-12 18:11:32 -0500 | [diff] [blame] | 132 | cout << ">> D: " << data << endl; |
akmhoque | ba09474 | 2014-02-28 11:47:21 -0600 | [diff] [blame] | 133 | pnlsr.getNlsrFace()->put(data); |
akmhoque | 5a44dd4 | 2014-03-12 18:11:32 -0500 | [diff] [blame] | 134 | } |
akmhoque | ba09474 | 2014-02-28 11:47:21 -0600 | [diff] [blame] | 135 | } |
akmhoque | 5a44dd4 | 2014-03-12 18:11:32 -0500 | [diff] [blame] | 136 | } |
akmhoque | ba09474 | 2014-02-28 11:47:21 -0600 | [diff] [blame] | 137 | |
akmhoque | 5a44dd4 | 2014-03-12 18:11:32 -0500 | [diff] [blame] | 138 | void |
| 139 | interestManager::processInterestForAdjLsa(Nlsr& pnlsr, |
| 140 | const ndn::Interest &interest, |
| 141 | string lsaKey, uint32_t interestedlsSeqNo) |
| 142 | { |
| 143 | std::pair<AdjLsa&, bool> adjLsa=pnlsr.getLsdb().getAdjLsa(lsaKey); |
| 144 | if( adjLsa.second ) |
akmhoque | ba09474 | 2014-02-28 11:47:21 -0600 | [diff] [blame] | 145 | { |
akmhoque | 5a44dd4 | 2014-03-12 18:11:32 -0500 | [diff] [blame] | 146 | if ( adjLsa.first.getLsSeqNo() >= interestedlsSeqNo ) |
| 147 | { |
| 148 | Data data(ndn::Name(interest.getName()).appendVersion()); |
| 149 | data.setFreshnessPeriod(1000); // 10 sec |
| 150 | string content=adjLsa.first.getAdjLsaData(); |
| 151 | data.setContent((const uint8_t*)content.c_str(),content.size()); |
| 152 | pnlsr.getKeyManager().signData(data); |
| 153 | cout << ">> D: " << data << endl; |
| 154 | pnlsr.getNlsrFace()->put(data); |
| 155 | } |
akmhoque | ba09474 | 2014-02-28 11:47:21 -0600 | [diff] [blame] | 156 | } |
akmhoque | 5a44dd4 | 2014-03-12 18:11:32 -0500 | [diff] [blame] | 157 | } |
akmhoque | ba09474 | 2014-02-28 11:47:21 -0600 | [diff] [blame] | 158 | |
akmhoque | 5a44dd4 | 2014-03-12 18:11:32 -0500 | [diff] [blame] | 159 | void |
| 160 | interestManager::processInterestForCorLsa(Nlsr& pnlsr, |
| 161 | const ndn::Interest &interest, |
| 162 | string lsaKey, uint32_t interestedlsSeqNo) |
| 163 | { |
| 164 | std::pair<CorLsa&, bool> corLsa=pnlsr.getLsdb().getCorLsa(lsaKey); |
| 165 | if( corLsa.second ) |
akmhoque | ba09474 | 2014-02-28 11:47:21 -0600 | [diff] [blame] | 166 | { |
akmhoque | 5a44dd4 | 2014-03-12 18:11:32 -0500 | [diff] [blame] | 167 | if ( corLsa.first.getLsSeqNo() >= interestedlsSeqNo ) |
| 168 | { |
| 169 | Data data(ndn::Name(interest.getName()).appendVersion()); |
| 170 | data.setFreshnessPeriod(1000); // 10 sec |
| 171 | string content=corLsa.first.getCorLsaData(); |
| 172 | data.setContent((const uint8_t*)content.c_str(),content.size()); |
| 173 | pnlsr.getKeyManager().signData(data); |
| 174 | cout << ">> D: " << data << endl; |
| 175 | pnlsr.getNlsrFace()->put(data); |
| 176 | } |
akmhoque | ba09474 | 2014-02-28 11:47:21 -0600 | [diff] [blame] | 177 | } |
akmhoque | 5a44dd4 | 2014-03-12 18:11:32 -0500 | [diff] [blame] | 178 | } |
akmhoque | ba09474 | 2014-02-28 11:47:21 -0600 | [diff] [blame] | 179 | |
akmhoque | 5a44dd4 | 2014-03-12 18:11:32 -0500 | [diff] [blame] | 180 | void |
| 181 | interestManager::processInterestKeys(Nlsr& pnlsr,const ndn::Interest &interest) |
| 182 | { |
| 183 | cout<<"processInterestKeys called "<<endl; |
| 184 | string intName=interest.getName().toUri(); |
| 185 | cout<<"Interest Name for Key: "<<intName<<std::endl; |
| 186 | nlsrTokenizer nt(intName,"/"); |
akmhoque | fa8ee9b | 2014-03-14 09:06:24 -0500 | [diff] [blame] | 187 | std::string chkString("ID-CERT"); |
| 188 | std::string certName; |
| 189 | uint32_t seqNum; |
| 190 | ndn::Name dataName; |
| 191 | std::pair<ndn::shared_ptr<ndn::IdentityCertificate>, bool> chkCert; |
| 192 | if( nt.getTokenPosition(chkString) == nt.getTokenNumber()-1 ) |
| 193 | { |
| 194 | certName=nt.getTokenString(0,nt.getTokenNumber()-1); |
| 195 | cout<<"Cert Name: "<<certName<<std::endl; |
| 196 | chkCert=pnlsr.getKeyManager().getCertificateFromStore(certName); |
| 197 | } |
| 198 | else |
| 199 | { |
| 200 | certName=nt.getTokenString(0,nt.getTokenNumber()-2); |
| 201 | seqNum=boost::lexical_cast<uint32_t>(nt.getToken(nt.getTokenNumber()-1)); |
| 202 | cout<<"Cert Name: "<<certName<<" Seq Num: "<<seqNum<<std::endl; |
| 203 | chkCert=pnlsr.getKeyManager().getCertificateFromStore(certName,seqNum); |
| 204 | } |
akmhoque | 5a44dd4 | 2014-03-12 18:11:32 -0500 | [diff] [blame] | 205 | if( chkCert.second ) |
akmhoque | ba09474 | 2014-02-28 11:47:21 -0600 | [diff] [blame] | 206 | { |
akmhoque | fa8ee9b | 2014-03-14 09:06:24 -0500 | [diff] [blame] | 207 | if(nt.getTokenPosition(chkString) == nt.getTokenNumber()-1) |
| 208 | { |
| 209 | std::string dn; |
| 210 | dataName=ndn::Name(interest.getName()).appendVersion(); |
| 211 | std::pair<uint32_t, bool> seqChk = |
| 212 | pnlsr.getKeyManager().getCertificateSeqNum(certName); |
| 213 | if( seqChk.second ) |
| 214 | { |
| 215 | dn=dataName.toUri()+"/"+boost::lexical_cast<std::string>(seqChk.first); |
| 216 | dataName=ndn::Name(dn); |
| 217 | } |
| 218 | else |
| 219 | { |
| 220 | dn=dataName.toUri()+"/"+boost::lexical_cast<std::string>(10); |
| 221 | dataName=ndn::Name(dn); |
| 222 | } |
| 223 | |
| 224 | } |
| 225 | else |
| 226 | { |
| 227 | dataName=ndn::Name(interest.getName()); |
| 228 | } |
| 229 | Data data(dataName.appendVersion()); |
akmhoque | 5a44dd4 | 2014-03-12 18:11:32 -0500 | [diff] [blame] | 230 | data.setFreshnessPeriod(1000); //10 sec |
| 231 | data.setContent(chkCert.first->wireEncode()); |
| 232 | pnlsr.getKeyManager().signData(data); |
| 233 | pnlsr.getNlsrFace()->put(data); |
akmhoque | ba09474 | 2014-02-28 11:47:21 -0600 | [diff] [blame] | 234 | } |
akmhoque | 5a44dd4 | 2014-03-12 18:11:32 -0500 | [diff] [blame] | 235 | } |
akmhoque | ba09474 | 2014-02-28 11:47:21 -0600 | [diff] [blame] | 236 | |
akmhoque | 5a44dd4 | 2014-03-12 18:11:32 -0500 | [diff] [blame] | 237 | |
| 238 | void |
| 239 | interestManager::processInterestTimedOut(Nlsr& pnlsr, |
| 240 | const ndn::Interest &interest) |
| 241 | { |
| 242 | cout << "Timed out interest : " << interest.getName().toUri() << endl; |
| 243 | string intName= interest.getName().toUri(); |
| 244 | nlsrTokenizer nt(intName,"/"); |
| 245 | string chkString("info"); |
| 246 | if( nt.doesTokenExist(chkString) ) |
akmhoque | ba09474 | 2014-02-28 11:47:21 -0600 | [diff] [blame] | 247 | { |
akmhoque | 5a44dd4 | 2014-03-12 18:11:32 -0500 | [diff] [blame] | 248 | string nbr=nt.getTokenString(0,nt.getTokenPosition(chkString)-1); |
| 249 | processInterestTimedOutInfo( pnlsr , nbr , interest); |
akmhoque | ba09474 | 2014-02-28 11:47:21 -0600 | [diff] [blame] | 250 | } |
akmhoque | 5a44dd4 | 2014-03-12 18:11:32 -0500 | [diff] [blame] | 251 | chkString="LSA"; |
| 252 | if( nt.doesTokenExist(chkString) ) |
akmhoque | ba09474 | 2014-02-28 11:47:21 -0600 | [diff] [blame] | 253 | { |
akmhoque | 5a44dd4 | 2014-03-12 18:11:32 -0500 | [diff] [blame] | 254 | processInterestTimedOutLsa(pnlsr, interest); |
akmhoque | ba09474 | 2014-02-28 11:47:21 -0600 | [diff] [blame] | 255 | } |
akmhoque | 5a44dd4 | 2014-03-12 18:11:32 -0500 | [diff] [blame] | 256 | } |
akmhoque | ba09474 | 2014-02-28 11:47:21 -0600 | [diff] [blame] | 257 | |
akmhoque | 5a44dd4 | 2014-03-12 18:11:32 -0500 | [diff] [blame] | 258 | void |
| 259 | interestManager::processInterestTimedOutInfo(Nlsr& pnlsr, string& neighbor, |
| 260 | const ndn::Interest &interest) |
| 261 | { |
| 262 | pnlsr.getAdl().incrementTimedOutInterestCount(neighbor); |
| 263 | int status=pnlsr.getAdl().getStatusOfNeighbor(neighbor); |
| 264 | int infoIntTimedOutCount=pnlsr.getAdl().getTimedOutInterestCount(neighbor); |
| 265 | cout<<"Neighbor: "<< neighbor << endl; |
| 266 | cout<<"Status: "<< status << endl; |
| 267 | cout<<"Info Interest Timed out: "<< infoIntTimedOutCount <<endl; |
| 268 | if((infoIntTimedOutCount < pnlsr.getConfParameter().getInterestRetryNumber())) |
akmhoque | ba09474 | 2014-02-28 11:47:21 -0600 | [diff] [blame] | 269 | { |
akmhoque | 5a44dd4 | 2014-03-12 18:11:32 -0500 | [diff] [blame] | 270 | string intName=neighbor +"/"+"info"+ |
| 271 | pnlsr.getConfParameter().getRouterPrefix(); |
| 272 | expressInterest( pnlsr,intName,2, |
| 273 | pnlsr.getConfParameter().getInterestResendTime()); |
akmhoque | ba09474 | 2014-02-28 11:47:21 -0600 | [diff] [blame] | 274 | } |
akmhoque | 5a44dd4 | 2014-03-12 18:11:32 -0500 | [diff] [blame] | 275 | else if ( (status == 1) && |
| 276 | (infoIntTimedOutCount == pnlsr.getConfParameter().getInterestRetryNumber())) |
| 277 | { |
| 278 | pnlsr.getAdl().setStatusOfNeighbor(neighbor,0); |
| 279 | pnlsr.incrementAdjBuildCount(); |
| 280 | if ( pnlsr.getIsBuildAdjLsaSheduled() == 0 ) |
| 281 | { |
| 282 | pnlsr.setIsBuildAdjLsaSheduled(1); |
| 283 | // event here |
| 284 | pnlsr.getScheduler().scheduleEvent(ndn::time::seconds(5), |
| 285 | ndn::bind(&Lsdb::scheduledAdjLsaBuild,&pnlsr.getLsdb(), |
| 286 | boost::ref(pnlsr))); |
| 287 | } |
| 288 | } |
| 289 | } |
| 290 | |
| 291 | void |
| 292 | interestManager::processInterestTimedOutLsa(Nlsr& pnlsr, |
| 293 | const ndn::Interest &interest) |
| 294 | { |
| 295 | } |
| 296 | |
| 297 | void |
| 298 | interestManager::expressInterest(Nlsr& pnlsr,const string& interestNamePrefix, |
| 299 | int scope, int seconds) |
| 300 | { |
| 301 | cout<<"Expressing Interest :"<<interestNamePrefix<<endl; |
| 302 | ndn::Interest i((ndn::Name(interestNamePrefix))); |
| 303 | //i.setScope(scope); |
| 304 | i.setInterestLifetime(seconds*1000); |
| 305 | i.setMustBeFresh(true); |
| 306 | pnlsr.getNlsrFace()->expressInterest(i, |
| 307 | ndn::func_lib::bind(&DataManager::processContent, |
| 308 | &pnlsr.getDm(), boost::ref(pnlsr),_1, _2,boost::ref(*this)), |
| 309 | ndn::func_lib::bind(&interestManager::processInterestTimedOut, |
| 310 | this,boost::ref(pnlsr),_1)); |
| 311 | } |
| 312 | |
| 313 | |
| 314 | void |
| 315 | interestManager::sendScheduledInfoInterest(Nlsr& pnlsr, int seconds) |
| 316 | { |
| 317 | std::list<Adjacent> adjList=pnlsr.getAdl().getAdjList(); |
| 318 | for(std::list<Adjacent>::iterator it=adjList.begin(); it!=adjList.end(); ++it) |
| 319 | { |
| 320 | string adjName=(*it).getAdjacentName()+"/"+"info"+ |
| 321 | pnlsr.getConfParameter().getRouterPrefix(); |
| 322 | expressInterest( pnlsr,adjName,2, |
| 323 | pnlsr.getConfParameter().getInterestResendTime()); |
| 324 | } |
| 325 | scheduleInfoInterest(pnlsr, pnlsr.getConfParameter().getInfoInterestInterval()); |
| 326 | } |
| 327 | |
| 328 | void |
| 329 | interestManager::scheduleInfoInterest(Nlsr& pnlsr, int seconds) |
| 330 | { |
| 331 | EventId eid=pnlsr.getScheduler().scheduleEvent(ndn::time::seconds(seconds), |
| 332 | ndn::bind(&interestManager::sendScheduledInfoInterest, this, |
| 333 | boost::ref(pnlsr),seconds)); |
| 334 | } |
akmhoque | ba09474 | 2014-02-28 11:47:21 -0600 | [diff] [blame] | 335 | |
| 336 | |
| 337 | } //namespace nlsr |