굿

로컬 IP 가지고 오기

· 14년 전 · 1711
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,424
14년 전 조회 1,910
14년 전 조회 2,019
14년 전 조회 1,223
14년 전 조회 2,472
14년 전 조회 2,457
14년 전 조회 2,030
14년 전 조회 1,966
14년 전 조회 1,510
14년 전 조회 1,991
14년 전 조회 1,911
14년 전 조회 1,615
14년 전 조회 1,316
14년 전 조회 3,075
14년 전 조회 2,389
14년 전 조회 1,750
14년 전 조회 2,405
14년 전 조회 1,265
14년 전 조회 1,389
14년 전 조회 2,019
14년 전 조회 2,103
14년 전 조회 1,706
14년 전 조회 1,395
14년 전 조회 1,562
14년 전 조회 1,508
14년 전 조회 2,333
14년 전 조회 2,463
14년 전 조회 2,341
14년 전 조회 1,494
14년 전 조회 2,048
14년 전 조회 2,095
14년 전 조회 2,188
14년 전 조회 3,963
14년 전 조회 1,519
14년 전 조회 2,321
14년 전 조회 1,235
14년 전 조회 1,375
14년 전 조회 1,234
14년 전 조회 1,660
14년 전 조회 2,111
14년 전 조회 1,659
14년 전 조회 1,510
14년 전 조회 1,187
14년 전 조회 2,156
14년 전 조회 1,720
14년 전 조회 1,263
14년 전 조회 2,676
14년 전 조회 1,770
14년 전 조회 1,712
14년 전 조회 1,234
14년 전 조회 2,117
14년 전 조회 3,083
14년 전 조회 1,484
14년 전 조회 940
14년 전 조회 2,467
14년 전 조회 2,233
14년 전 조회 1,174
14년 전 조회 1,743
14년 전 조회 1,929
14년 전 조회 1,787
14년 전 조회 1,129
14년 전 조회 1,116
14년 전 조회 1,417
14년 전 조회 1,742
14년 전 조회 1,595
14년 전 조회 1,287
14년 전 조회 1,703
14년 전 조회 1,535
14년 전 조회 1,831
14년 전 조회 1,291
14년 전 조회 1,532
14년 전 조회 1,308
14년 전 조회 1,667
14년 전 조회 1,140
14년 전 조회 2,549
14년 전 조회 1,746
14년 전 조회 3,329
14년 전 조회 1,719
14년 전 조회 1,481
14년 전 조회 1,552
14년 전 조회 1,531
14년 전 조회 985
14년 전 조회 1,241
14년 전 조회 1,310
14년 전 조회 2,776
14년 전 조회 1,414
14년 전 조회 3,776
15년 전 조회 1,230
15년 전 조회 1,057
15년 전 조회 1,144
15년 전 조회 2,128
15년 전 조회 1,741
15년 전 조회 1,550
15년 전 조회 1,609
15년 전 조회 1,533
15년 전 조회 1,636
15년 전 조회 1,291
15년 전 조회 905
15년 전 조회 1,406