굿

로컬 IP 가지고 오기

· 14년 전 · 1779
Option Explicit
'=========// IP 주소 가져오기 //==========================================================
Public Const ERROR_SUCCESS As Long = 0
Public Const MAX_ADAPTER_NAME_LENGTH As Long = 256
Public Const MAX_ADAPTER_DESCRipTION_LENGTH As Long = 128
Public Const MAX_ADAPTER_ADDRESS_LENGTH As Long = 8


Public Type ip_ADDRESS_STRING
ipAddr(0 To 15) As Byte
End Type


Public Type ip_MASK_STRING
ipMask(0 To 15) As Byte
End Type



Public Type ip_ADDR_STRING
dwNext As Long
ipAddress As ip_ADDRESS_STRING
ipMask As ip_MASK_STRING
dwContext As Long
End Type


Public Type ip_ADAPTER_INFO
dwNext As Long
ComboIndex As Long 'reserved
sAdapterName(0 To (MAX_ADAPTER_NAME_LENGTH + 3)) As Byte
sDescription(0 To (MAX_ADAPTER_DESCRipTION_LENGTH + 3)) As Byte
dwAddressLength As Long
sipAddress(0 To (MAX_ADAPTER_ADDRESS_LENGTH - 1)) As Byte
dwIndex As Long
uType As Long
uDhcpEnabled As Long
CurrentipAddress As Long
ipAddressList As ip_ADDR_STRING
GatewayList As ip_ADDR_STRING
DhcpServer As ip_ADDR_STRING
bHaveWins As Long
PrimaryWinsServer As ip_ADDR_STRING
SecondaryWinsServer As ip_ADDR_STRING
LeaseObtained As Long
LeaseExpires As Long
End Type


Public Declare Function GetAdaptersInfo Lib "iphlpapi.dll" _
(pTcpTable As Any, _
pdwSize As Long) As Long


Public Declare Sub CopyMemory Lib "kernel32" _
Alias "RtlMoveMemory" _
(dst As Any, _
src As Any, _
ByVal bcount As Long)


Public Declare Function DeleteUrlCacheEntry Lib "Wininet.dll" _
Alias "DeleteUrlCacheEntryA" _
(ByVal lpszUrlName As String) As Long


Public Declare Function lstrlenW Lib "kernel32" _
(ByVal lpString As Long) As Long



Public Function LocalipAddress() As String

On Error Resume Next

Dim cbRequired As Long
Dim buff() As Byte
Dim ptr1 As Long
Dim sipAddr As String
Dim Adapter As ip_ADAPTER_INFO

LocalipAddress = ""

Call GetAdaptersInfo(ByVal 0&, cbRequired)

If cbRequired > 0 Then
ReDim buff(0 To cbRequired - 1) As Byte
If GetAdaptersInfo(buff(0), cbRequired) = ERROR_SUCCESS Then
ptr1 = VarPtr(buff(0))
Do While (ptr1 <> 0)
CopyMemory Adapter, ByVal ptr1, LenB(Adapter)
With Adapter
sipAddr = TrimNull(StrConv(.ipAddressList.ipAddress.ipAddr, vbUnicode))
If Len(sipAddr) > 0 Then Exit Do
ptr1 = .dwNext
End With 'With Adapter
Loop 'Do While (ptr1 <> 0
End If 'If GetAdaptersInfo
End If 'If cbRequired > 0

LocalipAddress = sipAddr

End Function

Public Function TrimNull(startstr As String) As String

TrimNull = Left$(startstr, lstrlenW(StrPtr(startstr)))

End Function<div class='small'>[이 게시물은 관리자님에 의해 2011-10-31 16:46:12 기타에서 이동 됨]</div>
|
댓글을 작성하시려면 로그인이 필요합니다.

프로그램

+
제목 글쓴이 날짜 조회
14년 전 조회 1,776
14년 전 조회 1,482
14년 전 조회 1,955
14년 전 조회 2,084
14년 전 조회 1,289
14년 전 조회 2,528
14년 전 조회 2,515
14년 전 조회 2,095
14년 전 조회 2,034
14년 전 조회 1,568
14년 전 조회 2,047
14년 전 조회 1,971
14년 전 조회 1,674
14년 전 조회 1,379
14년 전 조회 3,136
14년 전 조회 2,451
14년 전 조회 1,807
14년 전 조회 2,450
14년 전 조회 1,324
14년 전 조회 1,439
14년 전 조회 2,070
14년 전 조회 2,158
14년 전 조회 1,769
14년 전 조회 1,451
14년 전 조회 1,630
14년 전 조회 1,577
14년 전 조회 2,388
14년 전 조회 2,532
14년 전 조회 2,393
14년 전 조회 1,542
14년 전 조회 2,107
14년 전 조회 2,155
14년 전 조회 2,240
14년 전 조회 4,028
14년 전 조회 1,574
14년 전 조회 2,385
14년 전 조회 1,298
14년 전 조회 1,431
14년 전 조회 1,285
14년 전 조회 1,715
14년 전 조회 2,167
14년 전 조회 1,714
14년 전 조회 1,580
14년 전 조회 1,244
14년 전 조회 2,219
14년 전 조회 1,794
14년 전 조회 1,315
14년 전 조회 2,744
14년 전 조회 1,839
14년 전 조회 1,780
14년 전 조회 1,291
14년 전 조회 2,173
14년 전 조회 3,138
14년 전 조회 1,533
14년 전 조회 988
14년 전 조회 2,521
14년 전 조회 2,269
14년 전 조회 1,224
14년 전 조회 1,796
14년 전 조회 1,962
14년 전 조회 1,829
14년 전 조회 1,162
14년 전 조회 1,161
14년 전 조회 1,457
14년 전 조회 1,789
14년 전 조회 1,636
14년 전 조회 1,318
14년 전 조회 1,747
14년 전 조회 1,567
14년 전 조회 1,866
14년 전 조회 1,324
14년 전 조회 1,568
15년 전 조회 1,353
15년 전 조회 1,714
15년 전 조회 1,187
15년 전 조회 2,591
15년 전 조회 1,789
15년 전 조회 3,362
15년 전 조회 1,764
15년 전 조회 1,524
15년 전 조회 1,580
15년 전 조회 1,571
15년 전 조회 1,020
15년 전 조회 1,284
15년 전 조회 1,352
15년 전 조회 2,807
15년 전 조회 1,446
15년 전 조회 3,805
15년 전 조회 1,277
15년 전 조회 1,099
15년 전 조회 1,181
15년 전 조회 2,178
15년 전 조회 1,783
15년 전 조회 1,598
15년 전 조회 1,655
15년 전 조회 1,582
15년 전 조회 1,681
15년 전 조회 1,332
15년 전 조회 950
15년 전 조회 1,450