Changeset 38946
- Timestamp:
- 09/22/16 12:24:43 (7 years ago)
- Location:
- titan/plugins/tithek
- Files:
-
- 24 edited
Legend:
- Unmodified
- Added
- Removed
-
titan/plugins/tithek/divxstage.h
r38776 r38946 199 199 free(tmppath); tmppath = NULL; 200 200 free(tmpstr); tmpstr = NULL; 201 free(tmpstr2); tmpstr2 = NULL;202 201 free(send); send = NULL; 203 202 free(filekey); filekey = NULL; -
titan/plugins/tithek/faststream.h
r34102 r38946 26 26 27 27 28 if(tmplink == NULL || ostrncmp("http ://", tmplink, 7))28 if(tmplink == NULL || ostrncmp("http", tmplink, 4)) 29 29 { 30 textbox(_("Message"), _("Hoster Url not http:// ") , _("OK"), getrcconfigint("rcok", NULL), _("EXIT"), getrcconfigint("rcexit", NULL), NULL, 0, NULL, 0, 1200, 200, 0, 0);30 textbox(_("Message"), _("Hoster Url not http:// or https://") , _("OK"), getrcconfigint("rcok", NULL), _("EXIT"), getrcconfigint("rcexit", NULL), NULL, 0, NULL, 0, 1200, 200, 0, 0); 31 31 goto end; 32 32 } 33 33 34 34 tmphost = string_replace("http://", "", tmplink, 0); 35 tmphost = string_replace("https://", "", tmphost, 1); 35 36 free(tmplink) , tmplink = NULL; 36 37 -
titan/plugins/tithek/filenuke.h
r36083 r38946 33 33 } 34 34 35 if(tmplink == NULL || ostrncmp("http ://", tmplink, 7))35 if(tmplink == NULL || ostrncmp("http", tmplink, 4)) 36 36 { 37 textbox(_("Message"), _("Hoster Url not http:// ") , _("OK"), getrcconfigint("rcok", NULL), _("EXIT"), getrcconfigint("rcexit", NULL), NULL, 0, NULL, 0, 1200, 200, 0, 0);37 textbox(_("Message"), _("Hoster Url not http:// or https://") , _("OK"), getrcconfigint("rcok", NULL), _("EXIT"), getrcconfigint("rcexit", NULL), NULL, 0, NULL, 0, 1200, 200, 0, 0); 38 38 goto end; 39 39 } -
titan/plugins/tithek/firedrive.h
r29990 r38946 29 29 30 30 31 if(tmplink == NULL || ostrncmp("http ://", tmplink, 7))31 if(tmplink == NULL || ostrncmp("http", tmplink, 4)) 32 32 { 33 textbox(_("Message"), _("Hoster Url not http:// ") , _("OK"), getrcconfigint("rcok", NULL), _("EXIT"), getrcconfigint("rcexit", NULL), NULL, 0, NULL, 0, 1200, 200, 0, 0);33 textbox(_("Message"), _("Hoster Url not http:// or https://") , _("OK"), getrcconfigint("rcok", NULL), _("EXIT"), getrcconfigint("rcexit", NULL), NULL, 0, NULL, 0, 1200, 200, 0, 0); 34 34 goto end; 35 35 } 36 36 37 37 tmphost = string_replace("http://", "", tmplink, 0); 38 tmphost = string_replace("https://", "", tmphost, 1); 38 39 free(tmplink) , tmplink = NULL; 39 40 -
titan/plugins/tithek/flashx.h
r37484 r38946 19 19 } 20 20 21 if(tmplink == NULL || ostrncmp("http ://", tmplink, 7))21 if(tmplink == NULL || ostrncmp("http", tmplink, 4)) 22 22 { 23 textbox(_("Message"), _("Hoster Url not http:// ") , _("OK"), getrcconfigint("rcok", NULL), _("EXIT"), getrcconfigint("rcexit", NULL), NULL, 0, NULL, 0, 1200, 200, 0, 0);23 textbox(_("Message"), _("Hoster Url not http:// or https://") , _("OK"), getrcconfigint("rcok", NULL), _("EXIT"), getrcconfigint("rcexit", NULL), NULL, 0, NULL, 0, 1200, 200, 0, 0); 24 24 goto end; 25 25 } 26 26 27 27 tmphost = string_replace("http://", "", tmplink, 0); 28 tmphost = string_replace("https://", "", tmphost, 1); 28 29 free(tmplink) , tmplink = NULL; 29 30 -
titan/plugins/tithek/letwatch.h
r36083 r38946 25 25 26 26 27 if(tmplink == NULL || ostrncmp("http ://", tmplink, 7))27 if(tmplink == NULL || ostrncmp("http", tmplink, 4)) 28 28 { 29 textbox(_("Message"), _("Hoster Url not http:// ") , _("OK"), getrcconfigint("rcok", NULL), _("EXIT"), getrcconfigint("rcexit", NULL), NULL, 0, NULL, 0, 1200, 200, 0, 0);29 textbox(_("Message"), _("Hoster Url not http:// or https://") , _("OK"), getrcconfigint("rcok", NULL), _("EXIT"), getrcconfigint("rcexit", NULL), NULL, 0, NULL, 0, 1200, 200, 0, 0); 30 30 goto end; 31 31 } 32 32 33 33 tmphost = string_replace("http://", "", tmplink, 0); 34 tmphost = string_replace("https://", "", tmphost, 1); 34 35 free(tmplink) , tmplink = NULL; 35 36 -
titan/plugins/tithek/mightyupload.h
r36083 r38946 23 23 } 24 24 25 if(tmplink == NULL || ostrncmp("http ://", tmplink, 7))25 if(tmplink == NULL || ostrncmp("http", tmplink, 4)) 26 26 { 27 textbox(_("Message"), _("Hoster Url not http:// ") , _("OK"), getrcconfigint("rcok", NULL), _("EXIT"), getrcconfigint("rcexit", NULL), NULL, 0, NULL, 0, 1200, 200, 0, 0);27 textbox(_("Message"), _("Hoster Url not http:// or https://") , _("OK"), getrcconfigint("rcok", NULL), _("EXIT"), getrcconfigint("rcexit", NULL), NULL, 0, NULL, 0, 1200, 200, 0, 0); 28 28 goto end; 29 29 } 30 30 31 31 tmphost = string_replace("http://", "", tmplink, 0); 32 tmphost = string_replace("https://", "", tmphost, 1); 32 33 free(tmplink) , tmplink = NULL; 33 34 -
titan/plugins/tithek/movreel.h
r32096 r38946 26 26 27 27 28 if(tmplink == NULL || ostrncmp("http ://", tmplink, 7))28 if(tmplink == NULL || ostrncmp("http", tmplink, 4)) 29 29 { 30 textbox(_("Message"), _("Hoster Url not http:// ") , _("OK"), getrcconfigint("rcok", NULL), _("EXIT"), getrcconfigint("rcexit", NULL), NULL, 0, NULL, 0, 1200, 200, 0, 0);30 textbox(_("Message"), _("Hoster Url not http:// or https://") , _("OK"), getrcconfigint("rcok", NULL), _("EXIT"), getrcconfigint("rcexit", NULL), NULL, 0, NULL, 0, 1200, 200, 0, 0); 31 31 goto end; 32 32 } 33 33 34 34 tmphost = string_replace("http://", "", tmplink, 0); 35 tmphost = string_replace("https://", "", tmphost, 1); 35 36 free(tmplink) , tmplink = NULL; 36 37 -
titan/plugins/tithek/movshare.h
r38393 r38946 38 38 printf("33333333333333333333333333\n"); 39 39 40 textbox(_("Message"), _("Hoster Url not http:// ") , _("OK"), getrcconfigint("rcok", NULL), _("EXIT"), getrcconfigint("rcexit", NULL), NULL, 0, NULL, 0, 1200, 200, 0, 0);40 textbox(_("Message"), _("Hoster Url not http:// or https://") , _("OK"), getrcconfigint("rcok", NULL), _("EXIT"), getrcconfigint("rcexit", NULL), NULL, 0, NULL, 0, 1200, 200, 0, 0); 41 41 goto end; 42 42 } 43 43 44 44 tmphost = string_replace("https://", "", tmplink, 0); 45 tmphost = string_replace("https://", "", tmphost, 1); 45 46 free(tmplink) , tmplink = NULL; 46 47 -
titan/plugins/tithek/novamov.h
r37484 r38946 31 31 32 32 33 if(tmplink == NULL || ostrncmp("http ://", tmplink, 7))33 if(tmplink == NULL || ostrncmp("http", tmplink, 4)) 34 34 { 35 textbox(_("Message"), _("Hoster Url not http:// ") , _("OK"), getrcconfigint("rcok", NULL), _("EXIT"), getrcconfigint("rcexit", NULL), NULL, 0, NULL, 0, 1200, 200, 0, 0);35 textbox(_("Message"), _("Hoster Url not http:// or https://") , _("OK"), getrcconfigint("rcok", NULL), _("EXIT"), getrcconfigint("rcexit", NULL), NULL, 0, NULL, 0, 1200, 200, 0, 0); 36 36 goto end; 37 37 } 38 38 39 39 tmphost = string_replace("http://", "", tmplink, 0); 40 tmphost = string_replace("https://", "", tmphost, 1); 40 41 free(tmplink) , tmplink = NULL; 41 42 -
titan/plugins/tithek/nowvideo.h
r38774 r38946 40 40 // tmplink = string_replace("/embed.php?v=", "/video/", tmplink, 1); 41 41 42 if(tmplink == NULL || ostrncmp("http ://", tmplink, 7))42 if(tmplink == NULL || ostrncmp("http", tmplink, 4)) 43 43 { 44 textbox(_("Message"), _("Hoster Url not http:// ") , _("OK"), getrcconfigint("rcok", NULL), _("EXIT"), getrcconfigint("rcexit", NULL), NULL, 0, NULL, 0, 1200, 200, 0, 0);44 textbox(_("Message"), _("Hoster Url not http:// or https://") , _("OK"), getrcconfigint("rcok", NULL), _("EXIT"), getrcconfigint("rcexit", NULL), NULL, 0, NULL, 0, 1200, 200, 0, 0); 45 45 goto end; 46 46 } 47 47 48 48 tmphost = string_replace("http://", "", tmplink, 0); 49 tmphost = string_replace("https://", "", tmphost, 1); 49 50 free(tmplink) , tmplink = NULL; 50 51 -
titan/plugins/tithek/played.h
r30012 r38946 26 26 27 27 28 if(tmplink == NULL || ostrncmp("http ://", tmplink, 7))28 if(tmplink == NULL || ostrncmp("http", tmplink, 4)) 29 29 { 30 textbox(_("Message"), _("Hoster Url not http:// ") , _("OK"), getrcconfigint("rcok", NULL), _("EXIT"), getrcconfigint("rcexit", NULL), NULL, 0, NULL, 0, 1200, 200, 0, 0);30 textbox(_("Message"), _("Hoster Url not http:// or https://") , _("OK"), getrcconfigint("rcok", NULL), _("EXIT"), getrcconfigint("rcexit", NULL), NULL, 0, NULL, 0, 1200, 200, 0, 0); 31 31 goto end; 32 32 } 33 33 34 34 tmphost = string_replace("http://", "", tmplink, 0); 35 tmphost = string_replace("https://", "", tmphost, 1); 35 36 free(tmplink) , tmplink = NULL; 36 37 -
titan/plugins/tithek/primeshare.h
r28962 r38946 25 25 26 26 27 if(tmplink == NULL || ostrncmp("http ://", tmplink, 7))27 if(tmplink == NULL || ostrncmp("http", tmplink, 4)) 28 28 { 29 textbox(_("Message"), _("Hoster Url not http:// ") , _("OK"), getrcconfigint("rcok", NULL), _("EXIT"), getrcconfigint("rcexit", NULL), NULL, 0, NULL, 0, 1200, 200, 0, 0);29 textbox(_("Message"), _("Hoster Url not http:// or https://") , _("OK"), getrcconfigint("rcok", NULL), _("EXIT"), getrcconfigint("rcexit", NULL), NULL, 0, NULL, 0, 1200, 200, 0, 0); 30 30 goto end; 31 31 } 32 32 33 33 tmphost = string_replace("http://", "", tmplink, 0); 34 tmphost = string_replace("https://", "", tmphost, 1); 34 35 free(tmplink) , tmplink = NULL; 35 36 -
titan/plugins/tithek/putlocker.h
r29533 r38946 28 28 29 29 30 if(tmplink == NULL || ostrncmp("http ://", tmplink, 7))31 { 32 textbox(_("Message"), _("Hoster Url not http:// ") , _("OK"), getrcconfigint("rcok", NULL), _("EXIT"), getrcconfigint("rcexit", NULL), NULL, 0, NULL, 0, 1200, 200, 0, 0);30 if(tmplink == NULL || ostrncmp("http", tmplink, 4)) 31 { 32 textbox(_("Message"), _("Hoster Url not http:// or https://") , _("OK"), getrcconfigint("rcok", NULL), _("EXIT"), getrcconfigint("rcexit", NULL), NULL, 0, NULL, 0, 1200, 200, 0, 0); 33 33 goto end; 34 34 } 35 35 36 36 tmphost = string_replace("http://", "", tmplink, 0); 37 tmphost = string_replace("https://", "", tmphost, 1); 37 38 free(tmplink) , tmplink = NULL; 38 39 -
titan/plugins/tithek/shared.h
r30269 r38946 25 25 26 26 27 if(tmplink == NULL || ostrncmp("http ://", tmplink, 7))27 if(tmplink == NULL || ostrncmp("http", tmplink, 4)) 28 28 { 29 textbox(_("Message"), _("Hoster Url not http:// ") , _("OK"), getrcconfigint("rcok", NULL), _("EXIT"), getrcconfigint("rcexit", NULL), NULL, 0, NULL, 0, 1200, 200, 0, 0);29 textbox(_("Message"), _("Hoster Url not http:// or https://") , _("OK"), getrcconfigint("rcok", NULL), _("EXIT"), getrcconfigint("rcexit", NULL), NULL, 0, NULL, 0, 1200, 200, 0, 0); 30 30 goto end; 31 31 } 32 32 33 33 tmphost = string_replace("http://", "", tmplink, 0); 34 tmphost = string_replace("https://", "", tmphost, 1); 34 35 free(tmplink) , tmplink = NULL; 35 36 -
titan/plugins/tithek/streamcloud.h
r34095 r38946 27 27 28 28 29 if(tmplink == NULL || ostrncmp("http ://", tmplink, 7))30 { 31 textbox(_("Message"), _("Hoster Url not http:// ") , _("OK"), getrcconfigint("rcok", NULL), _("EXIT"), getrcconfigint("rcexit", NULL), NULL, 0, NULL, 0, 1200, 200, 0, 0);29 if(tmplink == NULL || ostrncmp("http", tmplink, 4)) 30 { 31 textbox(_("Message"), _("Hoster Url not http:// or https://") , _("OK"), getrcconfigint("rcok", NULL), _("EXIT"), getrcconfigint("rcexit", NULL), NULL, 0, NULL, 0, 1200, 200, 0, 0); 32 32 goto end; 33 33 } 34 34 35 35 tmphost = string_replace("http://", "", tmplink, 0); 36 tmphost = string_replace("https://", "", tmphost, 1); 36 37 free(tmplink) , tmplink = NULL; 37 38 -
titan/plugins/tithek/thefile.h
r30275 r38946 30 30 31 31 32 if(tmplink == NULL || ostrncmp("http ://", tmplink, 7))33 { 34 textbox(_("Message"), _("Hoster Url not http:// ") , _("OK"), getrcconfigint("rcok", NULL), _("EXIT"), getrcconfigint("rcexit", NULL), NULL, 0, NULL, 0, 1200, 200, 0, 0);32 if(tmplink == NULL || ostrncmp("http", tmplink, 4)) 33 { 34 textbox(_("Message"), _("Hoster Url not http:// or https://") , _("OK"), getrcconfigint("rcok", NULL), _("EXIT"), getrcconfigint("rcexit", NULL), NULL, 0, NULL, 0, 1200, 200, 0, 0); 35 35 goto end; 36 36 } 37 37 38 38 tmphost = string_replace("http://", "", tmplink, 0); 39 tmphost = string_replace("https://", "", tmphost, 1); 39 40 free(tmplink) , tmplink = NULL; 40 41 -
titan/plugins/tithek/thevideo.h
r38825 r38946 7 7 int debuglevel = getconfigint("debuglevel", NULL); 8 8 char* tmphost = NULL, *tmplink = NULL, *tmppath = NULL, *tmpstr = NULL, *streamlink = NULL, *pos = NULL, *path = NULL, *url = NULL; 9 char* vhash = NULL, *gfk = NULL, *fname = NULL, *hash = NULL, *post = NULL, *inhu = NULL, *op = NULL, *vt = NULL, *tmpstr1 = NULL, *tmpstr2 = NULL, *tmpstr3 = NULL , *tmpstr4 = NULL;9 char* vhash = NULL, *gfk = NULL, *fname = NULL, *hash = NULL, *post = NULL, *inhu = NULL, *op = NULL, *vt = NULL, *tmpstr1 = NULL, *tmpstr2 = NULL, *tmpstr3 = NULL; 10 10 11 11 if(link == NULL) return NULL; … … 25 25 } 26 26 27 if(tmplink == NULL || ostrncmp("http ://", tmplink, 7))28 { 29 textbox(_("Message"), _("Hoster Url not http:// ") , _("OK"), getrcconfigint("rcok", NULL), _("EXIT"), getrcconfigint("rcexit", NULL), NULL, 0, NULL, 0, 1200, 200, 0, 0);27 if(tmplink == NULL || ostrncmp("http", tmplink, 4)) 28 { 29 textbox(_("Message"), _("Hoster Url not http:// or https://") , _("OK"), getrcconfigint("rcok", NULL), _("EXIT"), getrcconfigint("rcexit", NULL), NULL, 0, NULL, 0, 1200, 200, 0, 0); 30 30 goto end; 31 31 } 32 32 33 33 tmphost = string_replace("http://", "", tmplink, 0); 34 tmphost = string_replace("https://", "", tmphost, 1); 34 35 free(tmplink) , tmplink = NULL; 35 36 -
titan/plugins/tithek/vidag.h
r37474 r38946 6 6 debug(99, "link: %s", link); 7 7 int debuglevel = getconfigint("debuglevel", NULL); 8 char* url = NULL, *tmphost = NULL, *error = NULL, *tmppath = NULL, *tmpstr = NULL, *send = NULL, *id = NULL, *fname = NULL, *hashmsg = NULL, *hash = NULL, *hashlen = NULL, *ip = NULL, *streamlink = NULL;8 char* tmphost = NULL, *error = NULL, *tmppath = NULL, *tmpstr = NULL, *send = NULL, *id = NULL, *fname = NULL, *hashmsg = NULL, *hash = NULL, *hashlen = NULL, *ip = NULL, *streamlink = NULL; 9 9 10 10 if(link == NULL) return NULL; … … 25 25 26 26 27 if(tmplink == NULL || ostrncmp("http ://", tmplink, 7))27 if(tmplink == NULL || ostrncmp("http", tmplink, 4)) 28 28 { 29 textbox(_("Message"), _("Hoster Url not http:// ") , _("OK"), getrcconfigint("rcok", NULL), _("EXIT"), getrcconfigint("rcexit", NULL), NULL, 0, NULL, 0, 1200, 200, 0, 0);29 textbox(_("Message"), _("Hoster Url not http:// or https://") , _("OK"), getrcconfigint("rcok", NULL), _("EXIT"), getrcconfigint("rcexit", NULL), NULL, 0, NULL, 0, 1200, 200, 0, 0); 30 30 goto end; 31 31 } 32 32 33 33 tmphost = string_replace("http://", "", tmplink, 0); 34 tmphost = string_replace("https://", "", tmphost, 1); 34 35 free(tmplink) , tmplink = NULL; 35 36 -
titan/plugins/tithek/vidbull.h
r34106 r38946 26 26 27 27 28 if(tmplink == NULL || ostrncmp("http ://", tmplink, 7))28 if(tmplink == NULL || ostrncmp("http", tmplink, 4)) 29 29 { 30 textbox(_("Message"), _("Hoster Url not http:// ") , _("OK"), getrcconfigint("rcok", NULL), _("EXIT"), getrcconfigint("rcexit", NULL), NULL, 0, NULL, 0, 1200, 200, 0, 0);30 textbox(_("Message"), _("Hoster Url not http:// or https://") , _("OK"), getrcconfigint("rcok", NULL), _("EXIT"), getrcconfigint("rcexit", NULL), NULL, 0, NULL, 0, 1200, 200, 0, 0); 31 31 goto end; 32 32 } 33 33 34 34 tmphost = string_replace("http://", "", tmplink, 0); 35 tmphost = string_replace("https://", "", tmphost, 1); 35 36 free(tmplink) , tmplink = NULL; 36 37 -
titan/plugins/tithek/videoweed.h
r37484 r38946 31 31 32 32 33 if(tmplink == NULL || ostrncmp("http ://", tmplink, 7))33 if(tmplink == NULL || ostrncmp("http", tmplink, 4)) 34 34 { 35 textbox(_("Message"), _("Hoster Url not http:// ") , _("OK"), getrcconfigint("rcok", NULL), _("EXIT"), getrcconfigint("rcexit", NULL), NULL, 0, NULL, 0, 1200, 200, 0, 0);35 textbox(_("Message"), _("Hoster Url not http:// or https://") , _("OK"), getrcconfigint("rcok", NULL), _("EXIT"), getrcconfigint("rcexit", NULL), NULL, 0, NULL, 0, 1200, 200, 0, 0); 36 36 goto end; 37 37 } 38 38 39 39 tmphost = string_replace("http://", "", tmplink, 0); 40 tmphost = string_replace("https://", "", tmphost, 1); 40 41 free(tmplink) , tmplink = NULL; 41 42 -
titan/plugins/tithek/vidstream.h
r28962 r38946 41 41 42 42 43 if(tmplink == NULL || ostrncmp("http ://", tmplink, 7))43 if(tmplink == NULL || ostrncmp("http", tmplink, 4)) 44 44 { 45 textbox(_("Message"), _("Hoster Url not http:// ") , _("OK"), getrcconfigint("rcok", NULL), _("EXIT"), getrcconfigint("rcexit", NULL), NULL, 0, NULL, 0, 1200, 200, 0, 0);45 textbox(_("Message"), _("Hoster Url not http:// or https://") , _("OK"), getrcconfigint("rcok", NULL), _("EXIT"), getrcconfigint("rcexit", NULL), NULL, 0, NULL, 0, 1200, 200, 0, 0); 46 46 goto end; 47 47 } 48 48 49 49 tmphost = string_replace("http://", "", tmplink, 0); 50 tmphost = string_replace("https://", "", tmphost, 1); 50 51 free(tmplink) , tmplink = NULL; 51 52 -
titan/plugins/tithek/vidto.h
r34104 r38946 27 27 28 28 29 if(tmplink == NULL || ostrncmp("http ://", tmplink, 7))30 { 31 textbox(_("Message"), _("Hoster Url not http:// ") , _("OK"), getrcconfigint("rcok", NULL), _("EXIT"), getrcconfigint("rcexit", NULL), NULL, 0, NULL, 0, 1200, 200, 0, 0);29 if(tmplink == NULL || ostrncmp("http", tmplink, 4)) 30 { 31 textbox(_("Message"), _("Hoster Url not http:// or https://") , _("OK"), getrcconfigint("rcok", NULL), _("EXIT"), getrcconfigint("rcexit", NULL), NULL, 0, NULL, 0, 1200, 200, 0, 0); 32 32 goto end; 33 33 } 34 34 35 35 tmphost = string_replace("http://", "", tmplink, 0); 36 tmphost = string_replace("https://", "", tmphost, 1); 36 37 free(tmplink) , tmplink = NULL; 37 38 -
titan/plugins/tithek/vodlocker.h
r34102 r38946 26 26 27 27 28 if(tmplink == NULL || ostrncmp("http ://", tmplink, 7))28 if(tmplink == NULL || ostrncmp("http", tmplink, 4)) 29 29 { 30 textbox(_("Message"), _("Hoster Url not http:// ") , _("OK"), getrcconfigint("rcok", NULL), _("EXIT"), getrcconfigint("rcexit", NULL), NULL, 0, NULL, 0, 1200, 200, 0, 0);30 textbox(_("Message"), _("Hoster Url not http:// or https://") , _("OK"), getrcconfigint("rcok", NULL), _("EXIT"), getrcconfigint("rcexit", NULL), NULL, 0, NULL, 0, 1200, 200, 0, 0); 31 31 goto end; 32 32 } 33 33 34 34 tmphost = string_replace("http://", "", tmplink, 0); 35 tmphost = string_replace("https://", "", tmphost, 1); 35 36 free(tmplink) , tmplink = NULL; 36 37
Note: See TracChangeset
for help on using the changeset viewer.