akmhoque | 298385a | 2014-02-13 14:13:09 -0600 | [diff] [blame] | 1 | #include<iostream> |
| 2 | #include "nlsr_conf_param.hpp" |
| 3 | |
| 4 | using namespace std; |
| 5 | |
| 6 | ostream& |
| 7 | operator << (ostream &os, ConfParameter& cfp){ |
| 8 | os <<"Router Name: "<< cfp.getRouterName()<<endl; |
| 9 | os <<"Site Name: "<< cfp.getSiteName()<<endl; |
| 10 | os <<"Network: "<< cfp.getNetwork()<<endl; |
| 11 | os <<"Router Prefix: "<< cfp.getRouterPrefix()<<endl; |
| 12 | os <<"ChronoSync sync Prifex: "<< cfp.getChronosyncSyncPrefix()<<endl; |
| 13 | os <<"Interest Retry number: "<< cfp.getInterestRetryNumber()<<endl; |
| 14 | os <<"Interest Resend second: "<< cfp.getInterestResendTime()<<endl; |
| 15 | os <<"Info Interest Interval: "<<cfp.getInfoInterestInterval()<<endl; |
| 16 | os <<"LSA refresh time: "<< cfp.getLsaRefreshTime()<<endl; |
| 17 | os <<"Max Faces Per Prefix: "<< cfp.getMaxFacesPerPrefix()<<endl; |
| 18 | os <<"Log Dir: "<< cfp.getLogDir()<<endl; |
| 19 | os <<"Detalied logging: "<< cfp.getDetailedLogging()<<endl; |
| 20 | os <<"Debugging: "<< cfp.getDebugging()<<endl; |
| 21 | os <<"Hyperbolic ROuting: "<< cfp.getIsHyperbolicCalc()<<endl; |
| 22 | os <<"Hyp R: "<< cfp.getCorR()<<endl; |
| 23 | os <<"Hyp theta: "<< cfp.getCorTheta()<<endl; |
| 24 | os <<"Tunnel Type: "<< cfp.getTunnelType()<<endl; |
| 25 | |
| 26 | return os; |
| 27 | } |