]> git.llucax.com Git - z.facultad/75.74/practicos.git/blobdiff - practicas/pipi/src/routetable.cpp
Se mueve add_routes() a routetable porque estaba duplicado.
[z.facultad/75.74/practicos.git] / practicas / pipi / src / routetable.cpp
index 40de2d3d04c7de1cae8fc762f14107d7384f52bb..43e3377257d1da18324f7100d44c20d8647cb62b 100644 (file)
@@ -1,4 +1,6 @@
 #include "routetable.h"
+#include <string>
+#include <sstream>
 #ifdef DEBUG
 #include <iostream>
 #endif
@@ -30,4 +32,21 @@ RouteTable::Route* RouteTable::get(const IPAddr& dst)
     return &table[dst];
 }
 
+void add_routes(RouteTable& rt, std::istream& is, Dev& dev)
+{
+    std::string line;
+    while (std::getline(is, line))
+    {
+        std::istringstream iss(line);
+        std::string net;
+        std::string gw;
+        unsigned mtu;
+        unsigned metric;
+        iss >> net >> gw >> mtu >> metric;
+        if (net == "0") net = "0.0.0.0";
+        if (gw == "0") gw = "0.0.0.0";
+        rt.add(net, gw, metric, mtu, dev);
+    }
+}
+
 // vim: set et sw=4 sts=4 :