굿

로컬 IP 가지고 오기

· 14년 전 · 1740
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,743
14년 전 조회 1,448
14년 전 조회 1,930
14년 전 조회 2,042
14년 전 조회 1,255
14년 전 조회 2,494
14년 전 조회 2,482
14년 전 조회 2,064
14년 전 조회 1,998
14년 전 조회 1,533
14년 전 조회 2,021
14년 전 조회 1,943
14년 전 조회 1,639
14년 전 조회 1,335
14년 전 조회 3,096
14년 전 조회 2,417
14년 전 조회 1,774
14년 전 조회 2,424
14년 전 조회 1,284
14년 전 조회 1,413
14년 전 조회 2,037
14년 전 조회 2,126
14년 전 조회 1,730
14년 전 조회 1,420
14년 전 조회 1,589
14년 전 조회 1,535
14년 전 조회 2,352
14년 전 조회 2,493
14년 전 조회 2,362
14년 전 조회 1,511
14년 전 조회 2,069
14년 전 조회 2,118
14년 전 조회 2,210
14년 전 조회 3,992
14년 전 조회 1,538
14년 전 조회 2,338
14년 전 조회 1,262
14년 전 조회 1,399
14년 전 조회 1,261
14년 전 조회 1,681
14년 전 조회 2,133
14년 전 조회 1,675
14년 전 조회 1,537
14년 전 조회 1,207
14년 전 조회 2,185
14년 전 조회 1,751
14년 전 조회 1,285
14년 전 조회 2,709
14년 전 조회 1,797
14년 전 조회 1,741
14년 전 조회 1,252
14년 전 조회 2,136
14년 전 조회 3,106
14년 전 조회 1,504
14년 전 조회 955
14년 전 조회 2,490
14년 전 조회 2,249
14년 전 조회 1,193
14년 전 조회 1,769
14년 전 조회 1,941
14년 전 조회 1,801
14년 전 조회 1,142
14년 전 조회 1,132
14년 전 조회 1,437
14년 전 조회 1,762
14년 전 조회 1,606
14년 전 조회 1,299
14년 전 조회 1,715
14년 전 조회 1,546
14년 전 조회 1,851
14년 전 조회 1,303
14년 전 조회 1,545
14년 전 조회 1,321
14년 전 조회 1,681
14년 전 조회 1,156
14년 전 조회 2,564
14년 전 조회 1,766
14년 전 조회 3,346
14년 전 조회 1,737
14년 전 조회 1,495
14년 전 조회 1,561
14년 전 조회 1,542
14년 전 조회 999
14년 전 조회 1,255
14년 전 조회 1,333
14년 전 조회 2,787
15년 전 조회 1,424
15년 전 조회 3,788
15년 전 조회 1,244
15년 전 조회 1,074
15년 전 조회 1,159
15년 전 조회 2,148
15년 전 조회 1,753
15년 전 조회 1,574
15년 전 조회 1,625
15년 전 조회 1,550
15년 전 조회 1,654
15년 전 조회 1,311
15년 전 조회 918
15년 전 조회 1,422