굿

로컬 IP 가지고 오기

· 14년 전 · 1668
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>
|
댓글을 작성하시려면 로그인이 필요합니다.

프로그램

태그 필터 (최대 3개) 전체 개발자 소스 기타 mysql 팁자료실 javascript php linux flash 정규표현식 jquery node.js mobile 웹서버 os 프로그램 강좌 썸네일 이미지관련 도로명주소 그누보드5 기획자 견적서 계약서 기획서 마케팅 제안서 seo 통계 서식 통계자료 퍼블리셔 html css 반응형 웹접근성 퍼블리싱 표준화 반응형웹 홈페이지기초 부트스트랩 angularjs 포럼 스크린리더 센스리더 개발자톡 개발자팁 퍼블리셔톡 퍼블리셔팁 기획자톡 기획자팁 프로그램강좌 퍼블리싱강좌
+
제목 글쓴이 날짜 조회
14년 전 조회 1,668
14년 전 조회 1,375
14년 전 조회 1,874
14년 전 조회 1,972
14년 전 조회 1,180
14년 전 조회 2,425
14년 전 조회 2,400
14년 전 조회 1,984
14년 전 조회 1,926
14년 전 조회 1,456
14년 전 조회 1,939
14년 전 조회 1,862
14년 전 조회 1,565
14년 전 조회 1,275
14년 전 조회 3,023
14년 전 조회 2,340
14년 전 조회 1,702
14년 전 조회 2,358
14년 전 조회 1,230
14년 전 조회 1,338
14년 전 조회 1,974
14년 전 조회 2,050
14년 전 조회 1,661
14년 전 조회 1,352
14년 전 조회 1,517
14년 전 조회 1,465
14년 전 조회 2,297
14년 전 조회 2,425
14년 전 조회 2,296
14년 전 조회 1,453
14년 전 조회 2,010
14년 전 조회 2,055
14년 전 조회 2,147
14년 전 조회 3,927
14년 전 조회 1,477
14년 전 조회 2,281
14년 전 조회 1,193
14년 전 조회 1,319
14년 전 조회 1,182
14년 전 조회 1,621
14년 전 조회 2,070
14년 전 조회 1,616
14년 전 조회 1,464
14년 전 조회 1,148
14년 전 조회 2,108
14년 전 조회 1,675
14년 전 조회 1,218
14년 전 조회 2,630
14년 전 조회 1,734
14년 전 조회 1,669
14년 전 조회 1,184
14년 전 조회 2,067
14년 전 조회 3,036
14년 전 조회 1,459
14년 전 조회 905
14년 전 조회 2,447
14년 전 조회 2,195
14년 전 조회 1,154
14년 전 조회 1,718
14년 전 조회 1,900
14년 전 조회 1,767
14년 전 조회 1,102
14년 전 조회 1,089
14년 전 조회 1,398
14년 전 조회 1,716
14년 전 조회 1,575
14년 전 조회 1,265
14년 전 조회 1,679
14년 전 조회 1,513
14년 전 조회 1,809
14년 전 조회 1,263
14년 전 조회 1,501
14년 전 조회 1,286
14년 전 조회 1,647
14년 전 조회 1,117
14년 전 조회 2,525
14년 전 조회 1,721
14년 전 조회 3,300
14년 전 조회 1,693
14년 전 조회 1,462
14년 전 조회 1,524
14년 전 조회 1,503
14년 전 조회 956
14년 전 조회 1,219
14년 전 조회 1,287
14년 전 조회 2,751
14년 전 조회 1,392
14년 전 조회 3,749
14년 전 조회 1,205
14년 전 조회 1,035
14년 전 조회 1,119
14년 전 조회 2,109
14년 전 조회 1,717
14년 전 조회 1,525
14년 전 조회 1,582
14년 전 조회 1,508
14년 전 조회 1,610
14년 전 조회 1,266
14년 전 조회 876
14년 전 조회 1,388