2013-07-11 71 views

回答

2

這可以使用libgeoip完成。您可以在測試子目錄中找到example。它基本上是這樣工作的:

GeoIP *gi = GeoIP_open(path_to_database, flags); 
const char *country_code = GeoIP_country_code_by_addr(gi, "127.0.0.1"); 
相關問題