굿

로컬 IP 가지고 오기

· 14년 전 · 1712
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,723
14년 전 조회 1,427
14년 전 조회 1,910
14년 전 조회 2,020
14년 전 조회 1,226
14년 전 조회 2,472
14년 전 조회 2,459
14년 전 조회 2,036
14년 전 조회 1,969
14년 전 조회 1,513
14년 전 조회 1,997
14년 전 조회 1,911
14년 전 조회 1,615
14년 전 조회 1,317
14년 전 조회 3,077
14년 전 조회 2,392
14년 전 조회 1,752
14년 전 조회 2,406
14년 전 조회 1,267
14년 전 조회 1,391
14년 전 조회 2,019
14년 전 조회 2,106
14년 전 조회 1,708
14년 전 조회 1,397
14년 전 조회 1,565
14년 전 조회 1,510
14년 전 조회 2,333
14년 전 조회 2,463
14년 전 조회 2,343
14년 전 조회 1,495
14년 전 조회 2,048
14년 전 조회 2,096
14년 전 조회 2,191
14년 전 조회 3,966
14년 전 조회 1,519
14년 전 조회 2,323
14년 전 조회 1,235
14년 전 조회 1,377
14년 전 조회 1,234
14년 전 조회 1,662
14년 전 조회 2,113
14년 전 조회 1,659
14년 전 조회 1,510
14년 전 조회 1,189
14년 전 조회 2,160
14년 전 조회 1,721
14년 전 조회 1,264
14년 전 조회 2,678
14년 전 조회 1,772
14년 전 조회 1,713
14년 전 조회 1,234
14년 전 조회 2,119
14년 전 조회 3,085
14년 전 조회 1,485
14년 전 조회 942
14년 전 조회 2,470
14년 전 조회 2,233
14년 전 조회 1,175
14년 전 조회 1,744
14년 전 조회 1,929
14년 전 조회 1,788
14년 전 조회 1,130
14년 전 조회 1,117
14년 전 조회 1,419
14년 전 조회 1,743
14년 전 조회 1,597
14년 전 조회 1,288
14년 전 조회 1,703
14년 전 조회 1,537
14년 전 조회 1,834
14년 전 조회 1,293
14년 전 조회 1,533
14년 전 조회 1,308
14년 전 조회 1,668
14년 전 조회 1,140
14년 전 조회 2,550
14년 전 조회 1,746
14년 전 조회 3,329
14년 전 조회 1,721
14년 전 조회 1,482
14년 전 조회 1,552
14년 전 조회 1,531
14년 전 조회 986
14년 전 조회 1,243
14년 전 조회 1,315
14년 전 조회 2,778
14년 전 조회 1,414
15년 전 조회 3,776
15년 전 조회 1,231
15년 전 조회 1,058
15년 전 조회 1,145
15년 전 조회 2,130
15년 전 조회 1,743
15년 전 조회 1,553
15년 전 조회 1,609
15년 전 조회 1,534
15년 전 조회 1,638
15년 전 조회 1,294
15년 전 조회 905
15년 전 조회 1,407