제발 가르쳐 주세요..ㅠ.ㅠ
게시판을 맞게 찾으신거라면, 서지훈님이 예전에 올리신 코드가 있네요..
#include <netinet/in.h> #include <sys/utsname.h> #include <netdb.h> /* * Description : Current localhost IP * Argument : addrtype - type of address (INET4 or INET6) * Return : the hostent structure or a NULL pointer */ char **my_addrs(int *addrtype) { struct hostent *hptr; struct utsname myname; if (uname(&myname) < 0) return NULL; if ((hptr = gethostbyname(myname.nodename)) == NULL) return NULL; *addrtype = hptr->h_addrtype; return (hptr->h_addr_list); } 이거 즉빵입니다.
#include <netinet/in.h> #include <sys/utsname.h> #include <netdb.h> /* * Description : Current localhost IP * Argument : addrtype - type of address (INET4 or INET6) * Return : the hostent structure or a NULL pointer */ char **my_addrs(int *addrtype) { struct hostent *hptr; struct utsname myname; if (uname(&myname) < 0) return NULL; if ((hptr = gethostbyname(myname.nodename)) == NULL) return NULL; *addrtype = hptr->h_addrtype; return (hptr->h_addr_list); }
잘못 찾으신거라면..
ifconfig
로 하시면 되겠네요
0x2B | ~0x2B - Hamlet
OS 마다 아래 문자열을 약간씩 고쳐야 할 꺼에요.
ifconfig -a | grep "inet " | grep "Bcast:" | awk '{print $2}' | awk -F: '{print $2}'
윗분들은 6년전글인줄 알고 댓글을 다신건지 아닌지 궁금합니다;;
언제나 삽질 - http://tisphie.net/typo/ 프로그래밍 언어 개발 - http://langdev.net
--------------------------------------------- git init git add . git commit -am "project init" ---------------------------------------------
이 글을 업데이트한 사람을 벌줘야 합니다...
텍스트 포맷에 대한 자세한 정보
<code>
<blockcode>
<apache>
<applescript>
<autoconf>
<awk>
<bash>
<c>
<cpp>
<css>
<diff>
<drupal5>
<drupal6>
<gdb>
<html>
<html5>
<java>
<javascript>
<ldif>
<lua>
<make>
<mysql>
<perl>
<perl6>
<php>
<pgsql>
<proftpd>
<python>
<reg>
<spec>
<ruby>
<foo>
[foo]
게시판을 맞게 찾으신거라면, 서지훈님이 예전에 올리신 코드가 있네요..
게시판을 맞게 찾으신거라면, 서지훈님이 예전에 올리신 코드가 있네요..
잘못 찾으신거라면..
ifconfig
로 하시면 되겠네요
0x2B | ~0x2B
- Hamlet
이렇게 한 번 해보세요.
OS 마다 아래 문자열을 약간씩 고쳐야 할 꺼에요.
ifconfig -a | grep "inet " | grep "Bcast:" | awk '{print $2}' | awk -F: '{print $2}'
그냥
ifconfig
윗분들은
윗분들은 6년전글인줄 알고 댓글을 다신건지 아닌지 궁금합니다;;
언제나 삽질 - http://tisphie.net/typo/
프로그래밍 언어 개발 - http://langdev.net
언제나 삽질 - http://tisphie.net/typo/
프로그래밍 언어 개발 - http://langdev.net
6년전 글인지 모르고 달았다에 한표 ^.^
---------------------------------------------
git init
git add .
git commit -am "project init"
---------------------------------------------
---------------------------------------------
git init
git add .
git commit -am "project init"
---------------------------------------------
창피하군요... :(
이 글을 업데이트한 사람을 벌줘야 합니다...
댓글 달기