Server IP : 103.119.228.120 / Your IP : 3.136.22.184 Web Server : Apache System : Linux v8.techscape8.com 3.10.0-1160.119.1.el7.tuxcare.els2.x86_64 #1 SMP Mon Jul 15 12:09:18 UTC 2024 x86_64 User : nobody ( 99) PHP Version : 5.6.40 Disable Function : shell_exec,symlink,system,exec,proc_get_status,proc_nice,proc_terminate,define_syslog_variables,syslog,openlog,closelog,escapeshellcmd,passthru,ocinum cols,ini_alter,leak,listen,chgrp,apache_note,apache_setenv,debugger_on,debugger_off,ftp_exec,dl,dll,myshellexec,proc_open,socket_bind,proc_close,escapeshellarg,parse_ini_filepopen,fpassthru,exec,passthru,escapeshellarg,escapeshellcmd,proc_close,proc_open,ini_alter,popen,show_source,proc_nice,proc_terminate,proc_get_status,proc_close,pfsockopen,leak,apache_child_terminate,posix_kill,posix_mkfifo,posix_setpgid,posix_setsid,posix_setuid,dl,symlink,shell_exec,system,dl,passthru,escapeshellarg,escapeshellcmd,myshellexec,c99_buff_prepare,c99_sess_put,fpassthru,getdisfunc,fx29exec,fx29exec2,is_windows,disp_freespace,fx29sh_getupdate,fx29_buff_prepare,fx29_sess_put,fx29shexit,fx29fsearch,fx29ftpbrutecheck,fx29sh_tools,fx29sh_about,milw0rm,imagez,sh_name,myshellexec,checkproxyhost,dosyayicek,c99_buff_prepare,c99_sess_put,c99getsource,c99sh_getupdate,c99fsearch,c99shexit,view_perms,posix_getpwuid,posix_getgrgid,posix_kill,parse_perms,parsesort,view_perms_color,set_encoder_input,ls_setcheckboxall,ls_reverse_all,rsg_read,rsg_glob,selfURL,dispsecinfo,unix2DosTime,addFile,system,get_users,view_size,DirFiles,DirFilesWide,DirPrintHTMLHeaders,GetFilesTotal,GetTitles,GetTimeTotal,GetMatchesCount,GetFileMatchesCount,GetResultFiles,fs_copy_dir,fs_copy_obj,fs_move_dir,fs_move_obj,fs_rmdir,SearchText,getmicrotime MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /usr/share/doc/GeoIP-1.5.0/ |
Upload File : |
Rutger Okhuizen 7/31/2006 Implement waiting algorithm for GEOIP_CHECK_CACHE, so stat is called on every lookup. ----------------------- Maurice Cinquini *** ifndef WIN32 on netdb.h ? *** In GeoIPCity.c you don't "#ifndef WIN32" the netdb.h include, but in GeoIP.c you do. Which one is right? *** Warnings in GeoIP-1.2.1 before I made changes *** GeoIPUpdate.c:73: warning: implicit declaration of function `_setup_dbfilename' I suggest a GeoIP_private.h file to include prototypes for _setup_dbfilename and other private functions also used by GeoIPCity.c *** Drop the GeoIP_*_by_addr API calls *** And now that I think of it, why do you need a seperate GeoIP_region_by_addr and GeoIP_region_by_name since the later does the work of the former just as efficently. For backward compatibility you could #define GeoIP_region_by_addr to GeoIP_region_by_name Performance improvements suggested by Jason Linhart 1. cluster nodes to improve disk performance when using GEOIP_STANDARD 2. evaluate preformance of replacing binary tree with nodes containing 4 children Write function to list countries, sorted by name. Chris Gibbs contributed this which could be used: int GeoIP_country_sorted_index[246] = { 0, 5, 8, 61, 14, 3, 11, 7, 12, 6, 13, 9, 17, 1, 16, 15, 18, 32, 25, 21, 20,36, 22, 37, 27, 28, 33, 30, 19, 35, 34, 31, 104, 29, 24, 23, 26, 114, 47, 38, 52,121, 41, 207, 46, 48, 53, 39, 49, 116, 42, 40, 45, 50, 44, 97, 51, 54, 55, 58, 57, 59, 60, 216, 62, 64, 203, 87, 66, 63, 68, 2, 71, 73, 70, 69, 74, 75, 80, 170,208, 76, 84, 79, 56, 81, 82, 88, 83, 78, 86, 91, 90, 85, 92, 93, 98, 95, 228, 96,94, 99, 107, 103, 100, 106, 105, 101, 102, 108, 109, 111, 110, 122, 112, 115, 118,119, 120, 113, 123, 132, 124, 129, 128, 133, 126, 130, 131, 143, 139, 137,151,153, 150, 140, 148, 138, 145, 146, 149, 238, 152, 72, 136, 135, 142, 147, 134,154, 141, 155, 164, 163, 161, 10, 156, 166, 160, 157, 159, 165, 158, 144, 162, 167,173, 180, 178, 168, 171, 181, 169, 172, 176, 174, 179, 177, 182, 183, 184, 185,186, 193, 117, 125, 175, 229, 236, 198, 202, 187, 199, 189, 197, 192, 196,194,188, 200, 240, 89, 67, 127, 190, 201, 195, 205, 191, 43, 204, 220, 211, 221,210,209, 212, 215, 218, 214, 217, 213,206, 219, 223, 222, 4, 77, 225, 224, 226,227,234, 230, 233, 231,232, 235, 65, 237, 239, 242, 241, 243, 244, 245}; -------------------------------- Jude Nagurney 11/04/2012 Proxy Authorization needs to decode reserved/unsafe characters which may be encoded in the proxy credentials before base64-encoding the Proxy-Authorization data.