Lista de Plugins que me gustaria que vallamos haciendo

Publicado por centronick, Noviembre 05, 2013, 01:05:50 PM

Tema anterior - Siguiente tema

ingjaab

Mueres siendo un héroe, o vives lo suficiente para convertirte en villano

freedarwuin

Cita de: ingjaab en Noviembre 05, 2013, 10:28:41 PM
muy  ??? interesante el de taringa  ???

Yo hasta ahora no he podido dar con el de taringa muchos dominios pero es bien porque es http
>Si te gusta dale LIKE<

Entre las redes cableadas y las que no, el Mikrotik, ThunderCache y Tp-Link no hay nada Oculto... Para todo lo demás solo hay que "Guglear".
Mikrotik, Raptor, Ubiquiti, Tplink.
Prestamos Soporte en cuanto a Redes se refiere a Empresas, Wisp y hogares!!!
www.mikronet.com.ve

centronick

Amigo voy hacer la de taringa dejame ver como me queda

Código (cpp) [Seleccionar]
#include <iostream>
#include <cstring>
#include <vector>
#include "../utils.cpp"

// use this line to compile
// g++ -I. -fPIC -shared -g -o t26.net.so t26.net.cpp
// regex
// http.*\.t26\.net.*(\.swf|\.flv|\.mp4|\.x-flv|\.gif|\.jpg|\.jpeg|\.png|\.msi|\.exe)

string get_filename(string url) {
               vector<string> resultado;
               if (url.find("?") != string::npos) {
                       stringexplode(url, "?", &resultado);
                       stringexplode(resultado.at(resultado.size()-2), "/", &resultado);
                       return resultado.at(resultado.size()-1);          
               } else {
                       stringexplode(url, "/", &resultado);
                       return resultado.at(resultado.size()-1);
               }
}

extern "C" resposta getmatch(const string url) {
   resposta r;

       if ( (url.find(".t26.net/") != string::npos)
        ) {
               
           r.file = get_filename(url);
               if (!r.file.empty()) {
                       r.match = true;
                       r.domain = "t26_Taringa.net";
               } else {
                       r.match = false;
               }
       } else {
               r.match = false;
       }
       return r;
}