Changeset 37024 for titan


Ignore:
Timestamp:
02/02/16 12:56:23 (8 years ago)
Author:
obi
Message:

tithek add p2pcast.h

Location:
titan/plugins/tithek
Files:
1 added
3 edited

Legend:

Unmodified
Added
Removed
  • titan/plugins/tithek/tithek.c

    r36254 r37024  
    6161#include "nbastream.h"
    6262#include "nbaondemand.h"
     63#include "p2pcast.h"
    6364
    6465char pluginname[] = "TiTan Mediathek";
  • titan/plugins/tithek/tithek_global.h

    r36981 r37024  
    8080        else if(ostrstr(tmplink, "zerocast") != NULL)
    8181                streamurl = zerocast(url, 0);
     82        else if(ostrstr(tmplink, "p2pcast") != NULL)
     83                streamurl = p2pcast(url);
    8284        else
    8385                textbox(_("Message"), _("The hoster is not yet supported !"), _("OK"), getrcconfigint("rcok", NULL), _("EXIT"), getrcconfigint("rcexit", NULL), NULL, 0, NULL, 0, 600, 200, 5, 0);
     
    616618}
    617619
    618 void localparser_init(char* titheklink, char* tithekfile)
     620void localscript_init(char* titheklink, char* tithekfile)
    619621{
    620622        char* tmpstr = NULL, *tmpstr1 = NULL, *tmpstr2 = NULL, *cmd = NULL, *line = NULL, *path = NULL;
     
    693695char* localparser_hoster(char* link)
    694696{
    695         debug(99, "link: %s", link);
     697        debug(99, "local_parser link: %s", link);
    696698        int debuglevel = getconfigint("debuglevel", NULL);
    697699        int ret = 1;
     
    713715int localparser_search(struct skin* grid, struct skin* listbox, struct skin* countlabel, struct skin* load, char* link, char* title, char* searchstr, int flag)
    714716{
    715         debug(99, "link: %s", link);
    716717        char* tmpstr = NULL, *tmpstr1 = NULL, *line = NULL, *menu = NULL, *search = NULL;
    717718        int ret = 1, count = 0, i = 0;
  • titan/plugins/tithek/tithek_header.h

    r36981 r37024  
    114114char* giga(char* link);
    115115char* nbaondemand(char* link);
     116char* p2pcast(char* link);
    116117char* streamlive(char* link, int incount);
    117118char* cricfree(char* link, int incount);
Note: See TracChangeset for help on using the changeset viewer.