url updated in headers

This commit is contained in:
Anton Keks 2011-05-19 22:51:45 +03:00
parent cff4d38ee5
commit 07dee5c334
135 changed files with 168 additions and 168 deletions

View File

@ -1,67 +1,67 @@
/*
* This file is a part of Angry IP Scanner source code,
* see http://www.azib.net/ for more information.
/*
* This file is a part of Angry IP Scanner source code,
* see http://www.angryip.org/ for more information.
* Licensed under GPLv2.
*
* Windows JNI pinger using Microsoft's ICMP.DLL
* Author: Anton Keks
* Windows JNI pinger using Microsoft's ICMP.DLL
* Author: Anton Keks
*/
#include <windows.h>
#include <windows.h>
#include "WindowsPinger.h"
FARPROC IcmpCreateFile = NULL;
FARPROC IcmpCreateFile = NULL;
typedef BOOL (FAR WINAPI *TIcmpCloseHandle)(HANDLE IcmpHandle);
TIcmpCloseHandle IcmpCloseHandle = NULL;
TIcmpCloseHandle IcmpCloseHandle = NULL;
typedef DWORD (FAR WINAPI *TIcmpSendEcho)(
typedef DWORD (FAR WINAPI *TIcmpSendEcho)(
HANDLE IcmpHandle, /* handle returned from IcmpCreateFile() */
u_long DestAddress, /* destination IP address (in network order) */
LPVOID RequestData, /* pointer to buffer to send */
WORD RequestSize, /* length of data in buffer */
LPVOID RequestOptns, /* see Note 2 */
LPVOID ReplyBuffer, /* see Note 1 */
DWORD ReplySize, /* length of reply (must allow at least 1 reply) */
u_long DestAddress, /* destination IP address (in network order) */
LPVOID RequestData, /* pointer to buffer to send */
WORD RequestSize, /* length of data in buffer */
LPVOID RequestOptns, /* see Note 2 */
LPVOID ReplyBuffer, /* see Note 1 */
DWORD ReplySize, /* length of reply (must allow at least 1 reply) */
DWORD Timeout /* time in milliseconds to wait for reply */
);
TIcmpSendEcho IcmpSendEcho = NULL;
TIcmpSendEcho IcmpSendEcho = NULL;
/*
/*
* Class: net_azib_ipscan_core_net_WindowsPinger
* Method: nativeIcmpCreateFile
*/
JNIEXPORT jint JNICALL
JNIEXPORT jint JNICALL
Java_net_azib_ipscan_core_net_WindowsPinger_nativeIcmpCreateFile
(JNIEnv *env, jclass cls)
{
// Initialize dlls on first use
if (IcmpCreateFile == NULL) {
{
// Initialize dlls on first use
if (IcmpCreateFile == NULL) {
HMODULE hICMP = LoadLibrary("icmp.dll");
if (!hICMP) {
if (!hICMP) {
// newer versions of Windows should include this one instead
hICMP = LoadLibrary("iphlpapi.dll");
}
if (!hICMP) {
return -1;
}
IcmpCreateFile = (FARPROC) GetProcAddress(hICMP, "IcmpCreateFile");
IcmpCloseHandle = (TIcmpCloseHandle) GetProcAddress(hICMP, "IcmpCloseHandle");
IcmpSendEcho = (TIcmpSendEcho) GetProcAddress(hICMP, "IcmpSendEcho");
}
return IcmpCreateFile();
}
}
/*
* Class: net_azib_ipscan_core_net_WindowsPinger
* Method: nativeIcmpCloseHandle
*/
JNIEXPORT void JNICALL
JNIEXPORT void JNICALL
Java_net_azib_ipscan_core_net_WindowsPinger_nativeIcmpCloseHandle
(JNIEnv *env, jclass cls, jint handle)
{
@ -72,10 +72,10 @@ Java_net_azib_ipscan_core_net_WindowsPinger_nativeIcmpCloseHandle
* Class: net_azib_ipscan_core_net_WindowsPinger
* Method: nativeIcmpSendEcho
*/
JNIEXPORT jint JNICALL
JNIEXPORT jint JNICALL
Java_net_azib_ipscan_core_net_WindowsPinger_nativeIcmpSendEcho
(JNIEnv *env, jclass cls, jint handle, jbyteArray address, jbyteArray pingData, jbyteArray replyData, jint timeout)
(JNIEnv *env, jclass cls, jint handle, jbyteArray address, jbyteArray pingData, jbyteArray replyData, jint timeout)
{
DWORD replyCount;
jbyte *addrBuf, *pingDataBuf, *replyDataBuf;
@ -90,7 +90,7 @@ Java_net_azib_ipscan_core_net_WindowsPinger_nativeIcmpSendEcho
pingDataLen = (*env)->GetArrayLength(env, pingData);
replyDataLen = (*env)->GetArrayLength(env, replyData);
ip = *((u_long*)addrBuf);
replyCount = IcmpSendEcho((HANDLE)handle, ip, pingDataBuf, pingDataLen,
NULL, replyDataBuf, replyDataLen, timeout);

View File

@ -1,6 +1,6 @@
/*
* This file is a part of Angry IP Scanner source code,
* see http://www.azib.net/ for more information.
* see http://www.angryip.org/ for more information.
* Licensed under GPLv2.
*
* Windows JNI pinger using Microsoft's ICMP.DLL

View File

@ -1,6 +1,6 @@
/**
* This file is a part of Angry IP Scanner source code,
* see http://www.azib.net/ for more information.
* see http://www.angryip.org/ for more information.
* Licensed under GPLv2.
*/
package net.azib.ipscan;

View File

@ -1,6 +1,6 @@
/**
* This file is a part of Angry IP Scanner source code,
* see http://www.azib.net/ for more information.
* see http://www.angryip.org/ for more information.
* Licensed under GPLv2.
*/

View File

@ -1,6 +1,6 @@
/**
* This file is a part of Angry IP Scanner source code,
* see http://www.azib.net/ for more information.
* see http://www.angryip.org/ for more information.
* Licensed under GPLv2.
*/

View File

@ -1,6 +1,6 @@
/**
* This file is a part of Angry IP Scanner source code,
* see http://www.azib.net/ for more information.
* see http://www.angryip.org/ for more information.
* Licensed under GPLv2.
*/

View File

@ -1,6 +1,6 @@
/**
* This file is a part of Angry IP Scanner source code,
* see http://www.azib.net/ for more information.
* see http://www.angryip.org/ for more information.
* Licensed under GPLv2.
*/
package net.azib.ipscan.config;

View File

@ -1,6 +1,6 @@
/**
* This file is a part of Angry IP Scanner source code,
* see http://www.azib.net/ for more information.
* see http://www.angryip.org/ for more information.
* Licensed under GPLv2.
*/
package net.azib.ipscan.config;

View File

@ -1,6 +1,6 @@
/**
* This file is a part of Angry IP Scanner source code,
* see http://www.azib.net/ for more information.
* see http://www.angryip.org/ for more information.
* Licensed under GPLv2.
*/
package net.azib.ipscan.config;

View File

@ -1,6 +1,6 @@
/**
* This file is a part of Angry IP Scanner source code,
* see http://www.azib.net/ for more information.
* see http://www.angryip.org/ for more information.
* Licensed under GPLv2.
*/
package net.azib.ipscan.config;

View File

@ -1,6 +1,6 @@
/**
* This file is a part of Angry IP Scanner source code,
* see http://www.azib.net/ for more information.
* see http://www.angryip.org/ for more information.
* Licensed under GPLv2.
*/
package net.azib.ipscan.config;

View File

@ -1,6 +1,6 @@
/**
* This file is a part of Angry IP Scanner source code,
* see http://www.azib.net/ for more information.
* see http://www.angryip.org/ for more information.
* Licensed under GPLv2.
*/
package net.azib.ipscan.config;

View File

@ -1,6 +1,6 @@
/**
* This file is a part of Angry IP Scanner source code,
* see http://www.azib.net/ for more information.
* see http://www.angryip.org/ for more information.
* Licensed under GPLv2.
*/
package net.azib.ipscan.config;

View File

@ -1,6 +1,6 @@
/**
* This file is a part of Angry IP Scanner source code,
* see http://www.azib.net/ for more information.
* see http://www.angryip.org/ for more information.
* Licensed under GPLv2.
*/
package net.azib.ipscan.config;
@ -32,7 +32,7 @@ public class OpenersConfig extends NamedListConfig {
add(labels.get("opener.traceroute"), new Opener((Platform.WINDOWS ? "tracert" : Platform.LINUX ? "tracepath" : "traceroute") + " ${fetcher.ip}", true, null));
if (!Platform.WINDOWS) add(labels.get("opener.ssh"), new Opener("ssh ${fetcher.ip}", true, null));
if (!Platform.WINDOWS) add(labels.get("opener.whois"), new Opener("whois ${fetcher.ip}", true, null));
add(labels.get("opener.geolocate"), new Opener("http://www.azib.net/iplocate.php?ip=${fetcher.ip}", false, null));
add(labels.get("opener.geolocate"), new Opener("http://www.angryip.org/iplocate.php?ip=${fetcher.ip}", false, null));
add(labels.get("opener.email"), new Opener("mailto:somebody@example.com?subject=${fetcher.ip} (${fetcher.hostname})", true, null));
}
}

View File

@ -1,6 +1,6 @@
/**
* This file is a part of Angry IP Scanner source code,
* see http://www.azib.net/ for more information.
* see http://www.angryip.org/ for more information.
* Licensed under GPLv2.
*/
package net.azib.ipscan.config;

View File

@ -1,6 +1,6 @@
/**
* This file is a part of Angry IP Scanner source code,
* see http://www.azib.net/ for more information.
* see http://www.angryip.org/ for more information.
* Licensed under GPLv2.
*/
package net.azib.ipscan.config;

View File

@ -1,6 +1,6 @@
/**
* This file is a part of Angry IP Scanner source code,
* see http://www.azib.net/ for more information.
* see http://www.angryip.org/ for more information.
* Licensed under GPLv2.
*/

View File

@ -1,6 +1,6 @@
/**
* This file is a part of Angry IP Scanner source code,
* see http://www.azib.net/ for more information.
* see http://www.angryip.org/ for more information.
* Licensed under GPLv2.
*/
package net.azib.ipscan.core;

View File

@ -1,6 +1,6 @@
/**
* This file is a part of Angry IP Scanner source code,
* see http://www.azib.net/ for more information.
* see http://www.angryip.org/ for more information.
* Licensed under GPLv2.
*/
package net.azib.ipscan.core;

View File

@ -1,6 +1,6 @@
/**
* This file is a part of Angry IP Scanner source code,
* see http://www.azib.net/ for more information.
* see http://www.angryip.org/ for more information.
* Licensed under GPLv2.
*/
package net.azib.ipscan.core;

View File

@ -1,6 +1,6 @@
/**
* This file is a part of Angry IP Scanner source code,
* see http://www.azib.net/ for more information.
* see http://www.angryip.org/ for more information.
* Licensed under GPLv2.
*/
package net.azib.ipscan.core;

View File

@ -1,6 +1,6 @@
/**
* This file is a part of Angry IP Scanner source code,
* see http://www.azib.net/ for more information.
* see http://www.angryip.org/ for more information.
* Licensed under GPLv2.
*/
package net.azib.ipscan.core;

View File

@ -1,6 +1,6 @@
/**
* This file is a part of Angry IP Scanner source code,
* see http://www.azib.net/ for more information.
* see http://www.angryip.org/ for more information.
* Licensed under GPLv2.
*/
package net.azib.ipscan.core;

View File

@ -1,6 +1,6 @@
/**
* This file is a part of Angry IP Scanner source code,
* see http://www.azib.net/ for more information.
* see http://www.angryip.org/ for more information.
* Licensed under GPLv2.
*/
package net.azib.ipscan.core;

View File

@ -1,6 +1,6 @@
/**
* This file is a part of Angry IP Scanner source code,
* see http://www.azib.net/ for more information.
* see http://www.angryip.org/ for more information.
* Licensed under GPLv2.
*/
package net.azib.ipscan.core;

View File

@ -1,6 +1,6 @@
/**
* This file is a part of Angry IP Scanner source code,
* see http://www.azib.net/ for more information.
* see http://www.angryip.org/ for more information.
* Licensed under GPLv2.
*/
package net.azib.ipscan.core;

View File

@ -1,6 +1,6 @@
/**
* This file is a part of Angry IP Scanner source code,
* see http://www.azib.net/ for more information.
* see http://www.angryip.org/ for more information.
* Licensed under GPLv2.
*/
package net.azib.ipscan.core;

View File

@ -1,6 +1,6 @@
/**
* This file is a part of Angry IP Scanner source code,
* see http://www.azib.net/ for more information.
* see http://www.angryip.org/ for more information.
* Licensed under GPLv2.
*/
package net.azib.ipscan.core;

View File

@ -1,6 +1,6 @@
/**
* This file is a part of Angry IP Scanner source code,
* see http://www.azib.net/ for more information.
* see http://www.angryip.org/ for more information.
* Licensed under GPLv2.
*/

View File

@ -1,6 +1,6 @@
/**
* This file is a part of Angry IP Scanner source code,
* see http://www.azib.net/ for more information.
* see http://www.angryip.org/ for more information.
* Licensed under GPLv2.
*/
package net.azib.ipscan.core.net;

View File

@ -1,6 +1,6 @@
/**
* This file is a part of Angry IP Scanner source code,
* see http://www.azib.net/ for more information.
* see http://www.angryip.org/ for more information.
* Licensed under GPLv2.
*/
package net.azib.ipscan.core.net;

View File

@ -1,6 +1,6 @@
/**
* This file is a part of Angry IP Scanner source code,
* see http://www.azib.net/ for more information.
* see http://www.angryip.org/ for more information.
* Licensed under GPLv2.
*/
package net.azib.ipscan.core.net;

View File

@ -1,6 +1,6 @@
/**
* This file is a part of Angry IP Scanner source code,
* see http://www.azib.net/ for more information.
* see http://www.angryip.org/ for more information.
* Licensed under GPLv2.
*/
package net.azib.ipscan.core.net;

View File

@ -1,6 +1,6 @@
/**
* This file is a part of Angry IP Scanner source code,
* see http://www.azib.net/ for more information.
* see http://www.angryip.org/ for more information.
* Licensed under GPLv2.
*/
package net.azib.ipscan.core.net;

View File

@ -1,6 +1,6 @@
/**
* This file is a part of Angry IP Scanner source code,
* see http://www.azib.net/ for more information.
* see http://www.angryip.org/ for more information.
* Licensed under GPLv2.
*/
package net.azib.ipscan.core.net;

View File

@ -1,6 +1,6 @@
/**
* This file is a part of Angry IP Scanner source code,
* see http://www.azib.net/ for more information.
* see http://www.angryip.org/ for more information.
* Licensed under GPLv2.
*/
package net.azib.ipscan.core.net;

View File

@ -1,6 +1,6 @@
/**
* This file is a part of Angry IP Scanner source code,
* see http://www.azib.net/ for more information.
* see http://www.angryip.org/ for more information.
* Licensed under GPLv2.
*/
package net.azib.ipscan.core.net;

View File

@ -1,6 +1,6 @@
/**
* This file is a part of Angry IP Scanner source code,
* see http://www.azib.net/ for more information.
* see http://www.angryip.org/ for more information.
* Licensed under GPLv2.
*/
package net.azib.ipscan.core.net;

View File

@ -1,6 +1,6 @@
/**
* This file is a part of Angry IP Scanner source code,
* see http://www.azib.net/ for more information.
* see http://www.angryip.org/ for more information.
* Licensed under GPLv2.
*/

View File

@ -1,6 +1,6 @@
/**
* This file is a part of Angry IP Scanner source code,
* see http://www.azib.net/ for more information.
* see http://www.angryip.org/ for more information.
* Licensed under GPLv2.
*/

View File

@ -1,6 +1,6 @@
/**
* This file is a part of Angry IP Scanner source code,
* see http://www.azib.net/ for more information.
* see http://www.angryip.org/ for more information.
* Licensed under GPLv2.
*/
package net.azib.ipscan.core.state;

View File

@ -1,6 +1,6 @@
/**
* This file is a part of Angry IP Scanner source code,
* see http://www.azib.net/ for more information.
* see http://www.angryip.org/ for more information.
* Licensed under GPLv2.
*/

View File

@ -1,6 +1,6 @@
/**
* This file is a part of Angry IP Scanner source code,
* see http://www.azib.net/ for more information.
* see http://www.angryip.org/ for more information.
* Licensed under GPLv2.
*/

View File

@ -1,6 +1,6 @@
/**
* This file is a part of Angry IP Scanner source code,
* see http://www.azib.net/ for more information.
* see http://www.angryip.org/ for more information.
* Licensed under GPLv2.
*/

View File

@ -1,6 +1,6 @@
/**
* This file is a part of Angry IP Scanner source code,
* see http://www.azib.net/ for more information.
* see http://www.angryip.org/ for more information.
* Licensed under GPLv2.
*/
package net.azib.ipscan.core.values;

View File

@ -1,6 +1,6 @@
/**
* This file is a part of Angry IP Scanner source code,
* see http://www.azib.net/ for more information.
* see http://www.angryip.org/ for more information.
* Licensed under GPLv2.
*/
package net.azib.ipscan.core.values;

View File

@ -1,6 +1,6 @@
/**
* This file is a part of Angry IP Scanner source code,
* see http://www.azib.net/ for more information.
* see http://www.angryip.org/ for more information.
* Licensed under GPLv2.
*/

View File

@ -1,6 +1,6 @@
/**
* This file is a part of Angry IP Scanner source code,
* see http://www.azib.net/ for more information.
* see http://www.angryip.org/ for more information.
* Licensed under GPLv2.
*/
package net.azib.ipscan.exporters;

View File

@ -1,6 +1,6 @@
/**
* This file is a part of Angry IP Scanner source code,
* see http://www.azib.net/ for more information.
* see http://www.angryip.org/ for more information.
* Licensed under GPLv2.
*/
package net.azib.ipscan.exporters;

View File

@ -1,6 +1,6 @@
/**
* This file is a part of Angry IP Scanner source code,
* see http://www.azib.net/ for more information.
* see http://www.angryip.org/ for more information.
* Licensed under GPLv2.
*/
package net.azib.ipscan.exporters;

View File

@ -1,6 +1,6 @@
/**
* This file is a part of Angry IP Scanner source code,
* see http://www.azib.net/ for more information.
* see http://www.angryip.org/ for more information.
* Licensed under GPLv2.
*/
package net.azib.ipscan.exporters;

View File

@ -1,6 +1,6 @@
/**
* This file is a part of Angry IP Scanner source code,
* see http://www.azib.net/ for more information.
* see http://www.angryip.org/ for more information.
* Licensed under GPLv2.
*/
package net.azib.ipscan.exporters;

View File

@ -1,6 +1,6 @@
/**
* This file is a part of Angry IP Scanner source code,
* see http://www.azib.net/ for more information.
* see http://www.angryip.org/ for more information.
* Licensed under GPLv2.
*/

View File

@ -1,6 +1,6 @@
/**
* This file is a part of Angry IP Scanner source code,
* see http://www.azib.net/ for more information.
* see http://www.angryip.org/ for more information.
* Licensed under GPLv2.
*/
package net.azib.ipscan.feeders;

View File

@ -1,6 +1,6 @@
/**
* This file is a part of Angry IP Scanner source code,
* see http://www.azib.net/ for more information.
* see http://www.angryip.org/ for more information.
* Licensed under GPLv2.
*/

View File

@ -1,6 +1,6 @@
/**
* This file is a part of Angry IP Scanner source code,
* see http://www.azib.net/ for more information.
* see http://www.angryip.org/ for more information.
* Licensed under GPLv2.
*/
package net.azib.ipscan.feeders;

View File

@ -1,6 +1,6 @@
/**
* This file is a part of Angry IP Scanner source code,
* see http://www.azib.net/ for more information.
* see http://www.angryip.org/ for more information.
* Licensed under GPLv2.
*/

View File

@ -1,6 +1,6 @@
/**
* This file is a part of Angry IP Scanner source code,
* see http://www.azib.net/ for more information.
* see http://www.angryip.org/ for more information.
* Licensed under GPLv2.
*/
package net.azib.ipscan.feeders;

View File

@ -1,6 +1,6 @@
/**
* This file is a part of Angry IP Scanner source code,
* see http://www.azib.net/ for more information.
* see http://www.angryip.org/ for more information.
* Licensed under GPLv2.
*/
package net.azib.ipscan.feeders;

View File

@ -1,6 +1,6 @@
/**
* This file is a part of Angry IP Scanner source code,
* see http://www.azib.net/ for more information.
* see http://www.angryip.org/ for more information.
* Licensed under GPLv2.
*/
package net.azib.ipscan.feeders;

View File

@ -1,6 +1,6 @@
/**
* This file is a part of Angry IP Scanner source code,
* see http://www.azib.net/ for more information.
* see http://www.angryip.org/ for more information.
* Licensed under GPLv2.
*/
package net.azib.ipscan.feeders;

View File

@ -1,6 +1,6 @@
/**
* This file is a part of Angry IP Scanner source code,
* see http://www.azib.net/ for more information.
* see http://www.angryip.org/ for more information.
* Licensed under GPLv2.
*/
package net.azib.ipscan.feeders;

View File

@ -1,6 +1,6 @@
/**
* This file is a part of Angry IP Scanner source code,
* see http://www.azib.net/ for more information.
* see http://www.angryip.org/ for more information.
* Licensed under GPLv2.
*/
package net.azib.ipscan.fetchers;

View File

@ -1,6 +1,6 @@
/**
* This file is a part of Angry IP Scanner source code,
* see http://www.azib.net/ for more information.
* see http://www.angryip.org/ for more information.
*/
package net.azib.ipscan.fetchers;

View File

@ -1,6 +1,6 @@
/**
* This file is a part of Angry IP Scanner source code,
* see http://www.azib.net/ for more information.
* see http://www.angryip.org/ for more information.
*/
package net.azib.ipscan.fetchers;

View File

@ -1,6 +1,6 @@
/**
* This file is a part of Angry IP Scanner source code,
* see http://www.azib.net/ for more information.
* see http://www.angryip.org/ for more information.
* Licensed under GPLv2.
*/
package net.azib.ipscan.fetchers;

View File

@ -1,6 +1,6 @@
/**
* This file is a part of Angry IP Scanner source code,
* see http://www.azib.net/ for more information.
* see http://www.angryip.org/ for more information.
* Licensed under GPLv2.
*/

View File

@ -1,6 +1,6 @@
/**
* This file is a part of Angry IP Scanner source code,
* see http://www.azib.net/ for more information.
* see http://www.angryip.org/ for more information.
* Licensed under GPLv2.
*/
package net.azib.ipscan.fetchers;

View File

@ -1,6 +1,6 @@
/**
* This file is a part of Angry IP Scanner source code,
* see http://www.azib.net/ for more information.
* see http://www.angryip.org/ for more information.
* Licensed under GPLv2.
*/
package net.azib.ipscan.fetchers;

View File

@ -1,6 +1,6 @@
/**
* This file is a part of Angry IP Scanner source code,
* see http://www.azib.net/ for more information.
* see http://www.angryip.org/ for more information.
* Licensed under GPLv2.
*/
package net.azib.ipscan.fetchers;

View File

@ -1,6 +1,6 @@
/**
* This file is a part of Angry IP Scanner source code,
* see http://www.azib.net/ for more information.
* see http://www.angryip.org/ for more information.
* Licensed under GPLv2.
*/
package net.azib.ipscan.fetchers;

View File

@ -1,6 +1,6 @@
/**
* This file is a part of Angry IP Scanner source code,
* see http://www.azib.net/ for more information.
* see http://www.angryip.org/ for more information.
* Licensed under GPLv2.
*/

View File

@ -1,6 +1,6 @@
/**
* This file is a part of Angry IP Scanner source code,
* see http://www.azib.net/ for more information.
* see http://www.angryip.org/ for more information.
*/
package net.azib.ipscan.fetchers;

View File

@ -1,6 +1,6 @@
/**
* This file is a part of Angry IP Scanner source code,
* see http://www.azib.net/ for more information.
* see http://www.angryip.org/ for more information.
*/
package net.azib.ipscan.fetchers;

View File

@ -1,6 +1,6 @@
/**
* This file is a part of Angry IP Scanner source code,
* see http://www.azib.net/ for more information.
* see http://www.angryip.org/ for more information.
* Licensed under GPLv2.
*/

View File

@ -1,6 +1,6 @@
/**
* This file is a part of Angry IP Scanner source code,
* see http://www.azib.net/ for more information.
* see http://www.angryip.org/ for more information.
* Licensed under GPLv2.
*/

View File

@ -1,6 +1,6 @@
/**
* This file is a part of Angry IP Scanner source code,
* see http://www.azib.net/ for more information.
* see http://www.angryip.org/ for more information.
* Licensed under GPLv2.
*/
package net.azib.ipscan.fetchers;

View File

@ -1,6 +1,6 @@
/**
* This file is a part of Angry IP Scanner source code,
* see http://www.azib.net/ for more information.
* see http://www.angryip.org/ for more information.
*/
package net.azib.ipscan.fetchers;

View File

@ -1,6 +1,6 @@
/**
* This file is a part of Angry IP Scanner source code,
* see http://www.azib.net/ for more information.
* see http://www.angryip.org/ for more information.
*/
package net.azib.ipscan.fetchers;

View File

@ -1,6 +1,6 @@
/**
* This file is a part of Angry IP Scanner source code,
* see http://www.azib.net/ for more information.
* see http://www.angryip.org/ for more information.
* Licensed under GPLv2.
*/
package net.azib.ipscan.fetchers;

View File

@ -1,6 +1,6 @@
/**
* This file is a part of Angry IP Scanner source code,
* see http://www.azib.net/ for more information.
* see http://www.angryip.org/ for more information.
* Licensed under GPLv2.
*/
package net.azib.ipscan.fetchers;

View File

@ -1,6 +1,6 @@
/**
* This file is a part of Angry IP Scanner source code,
* see http://www.azib.net/ for more information.
* see http://www.angryip.org/ for more information.
* Licensed under GPLv2.
*/

View File

@ -1,6 +1,6 @@
/**
* This file is a part of Angry IP Scanner source code,
* see http://www.azib.net/ for more information.
* see http://www.angryip.org/ for more information.
* Licensed under GPLv2.
*/
package net.azib.ipscan.gui;

View File

@ -1,6 +1,6 @@
/**
* This file is a part of Angry IP Scanner source code,
* see http://www.azib.net/ for more information.
* see http://www.angryip.org/ for more information.
* Licensed under GPLv2.
*/
package net.azib.ipscan.gui;

View File

@ -1,6 +1,6 @@
/**
* This file is a part of Angry IP Scanner source code,
* see http://www.azib.net/ for more information.
* see http://www.angryip.org/ for more information.
* Licensed under GPLv2.
*/

View File

@ -1,6 +1,6 @@
/**
* This file is a part of Angry IP Scanner source code,
* see http://www.azib.net/ for more information.
* see http://www.angryip.org/ for more information.
* Licensed under GPLv2.
*/
package net.azib.ipscan.gui;

View File

@ -1,6 +1,6 @@
/**
* This file is a part of Angry IP Scanner source code,
* see http://www.azib.net/ for more information.
* see http://www.angryip.org/ for more information.
* Licensed under GPLv2.
*/
package net.azib.ipscan.gui;

View File

@ -1,6 +1,6 @@
/**
* This file is a part of Angry IP Scanner source code,
* see http://www.azib.net/ for more information.
* see http://www.angryip.org/ for more information.
* Licensed under GPLv2.
*/
package net.azib.ipscan.gui;

View File

@ -1,6 +1,6 @@
/**
* This file is a part of Angry IP Scanner source code,
* see http://www.azib.net/ for more information.
* see http://www.angryip.org/ for more information.
* Licensed under GPLv2.
*/
package net.azib.ipscan.gui;

View File

@ -1,6 +1,6 @@
/**
* This file is a part of Angry IP Scanner source code,
* see http://www.azib.net/ for more information.
* see http://www.angryip.org/ for more information.
* Licensed under GPLv2.
*/
package net.azib.ipscan.gui;

View File

@ -1,6 +1,6 @@
/**
* This file is a part of Angry IP Scanner source code,
* see http://www.azib.net/ for more information.
* see http://www.angryip.org/ for more information.
* Licensed under GPLv2.
*/

View File

@ -1,6 +1,6 @@
/**
* This file is a part of Angry IP Scanner source code,
* see http://www.azib.net/ for more information.
* see http://www.angryip.org/ for more information.
* Licensed under GPLv2.
*/
package net.azib.ipscan.gui;

View File

@ -1,6 +1,6 @@
/**
* This file is a part of Angry IP Scanner source code,
* see http://www.azib.net/ for more information.
* see http://www.angryip.org/ for more information.
* Licensed under GPLv2.
*/

View File

@ -1,6 +1,6 @@
/**
* This file is a part of Angry IP Scanner source code,
* see http://www.azib.net/ for more information.
* see http://www.angryip.org/ for more information.
* Licensed under GPLv2.
*/
package net.azib.ipscan.gui;

View File

@ -1,6 +1,6 @@
/**
* This file is a part of Angry IP Scanner source code,
* see http://www.azib.net/ for more information.
* see http://www.angryip.org/ for more information.
* Licensed under GPLv2.
*/
package net.azib.ipscan.gui.actions;

View File

@ -1,6 +1,6 @@
/**
* This file is a part of Angry IP Scanner source code,
* see http://www.azib.net/ for more information.
* see http://www.angryip.org/ for more information.
* Licensed under GPLv2.
*/
package net.azib.ipscan.gui.actions;

View File

@ -1,6 +1,6 @@
/**
* This file is a part of Angry IP Scanner source code,
* see http://www.azib.net/ for more information.
* see http://www.angryip.org/ for more information.
* Licensed under GPLv2.
*/
package net.azib.ipscan.gui.actions;

View File

@ -1,6 +1,6 @@
/**
* This file is a part of Angry IP Scanner source code,
* see http://www.azib.net/ for more information.
* see http://www.angryip.org/ for more information.
* Licensed under GPLv2.
*/
package net.azib.ipscan.gui.actions;

View File

@ -1,6 +1,6 @@
/**
* This file is a part of Angry IP Scanner source code,
* see http://www.azib.net/ for more information.
* see http://www.angryip.org/ for more information.
* Licensed under GPLv2.
*/
package net.azib.ipscan.gui.actions;

View File

@ -1,6 +1,6 @@
/**
* This file is a part of Angry IP Scanner source code,
* see http://www.azib.net/ for more information.
* see http://www.angryip.org/ for more information.
* Licensed under GPLv2.
*/
package net.azib.ipscan.gui.actions;

Some files were not shown because too many files have changed in this diff Show More