개소리 왈왈/컴퓨터2015. 5. 20. 20:09

야이!!!

공지를 메일로 좀 쏘던가 -_-



DDNS 정상 사용을 위하여 펌웨어 업그레이드 하세요!


최근 해커들의 IP공유기 공격으로 인해 무분별한 DDNS등록 사례가 확인되었으며 해킹을 통해 등록된

DDNS 정보가 악의적으로 사용될 경우 또 다른 2차 피해를 발생 시킬 수 있습니다.


금번 배포된 펌웨어 버전 9.52에서는 ipTIME DDNS Client 업그레이드를 통해 무분별한 DDNS 등록을

 원천 차단하였으며, ipTIME DDNS 정상 사용을 위해서는 반드시 펌웨어 버전 9.52이상으로 공유기를

 업그레이드 하여 사용하셔야 합니다.


- 펌웨어 버전 9.52이전 버전에서는 DDNS 사용 시 아래와 같이 DDNS 등록이 차단될 수 있습니다.


[링크 : http://iptime.com/iptime/?uid=14731&mod=document&page_id=67]





'개소리 왈왈 > 컴퓨터' 카테고리의 다른 글

웹캠 2개 지름!! + 마개조  (2) 2015.05.23
지름신님 소환!  (0) 2015.05.22
삼성 시리즈 7 크로노스 -_-  (0) 2015.04.12
i5-4690 / Intel HD4000 collage 기능?  (0) 2015.04.08
시리얼 / 패러럴 핀 헤더 확장  (0) 2015.04.03
Posted by 구차니
Programming/C Win32 MFC2015. 5. 19. 14:35

배치빌드 하거나 할 경우 유용하게 쓰이는 옵션


-D name

Predefine name as a macro, with definition 1. 


-D name=definition

The contents of definition are tokenized and processed as if they appeared during translation phase three in a ‘#define’ directive. In particular, the definition will be truncated by embedded newline characters.

If you are invoking the preprocessor from a shell or shell-like program you may need to use the shell's quoting syntax to protect characters such as spaces that have a meaning in the shell syntax.


If you wish to define a function-like macro on the command line, write its argument list with surrounding parentheses before the equals sign (if any). Parentheses are meaningful to most shells, so you will need to quote the option. With sh and csh, -D'name(args...)=definition' works.


-D and -U options are processed in the order they are given on the command line. All -imacros file and -include file options are processed after all -D and -U options. 


-U name

Cancel any previous definition of name, either built in or provided with a -D option. 


-undef

Do not predefine any system-specific or GCC-specific macros. The standard predefined macros remain defined. 


[링크 : https://gcc.gnu.org/onlinedocs/gcc/Preprocessor-Options.html] 


+

Visual studio에서는 /D로 적용된다.

[링크 : https://msdn.microsoft.com/ko-kr/library/teas0593.aspx]

'Programming > C Win32 MFC' 카테고리의 다른 글

가변인자를 다시 넘겨주기  (2) 2015.07.07
printf 가변인자의 비밀?  (0) 2015.06.18
setjmp, longjmp  (0) 2015.05.19
inline 함수..  (0) 2015.05.12
혼돈의 카오스 - 교차참조 헤더  (0) 2015.05.11
Posted by 구차니
Programming/C Win32 MFC2015. 5. 19. 10:03

setjmp와 longjmp는 함수를 넘나드는(다른 파일도 되려나?) 점프인데

goto 보다 더 위험한(!) 놈이라 잘 쓰지 않도록 되어 있는 것으로 보인다.

게다가 순수 C 구현이 아닌 OS 지원을 받는 넘이라 시스템 별로 다르게 작동 할지도 모른다고 ㄷㄷㄷ


코드로는 jmp_buf 는 점프할 지점을 저장하는 것이고

sizeof로 해보니 200을 뱉어낸다 ㄷㄷ (Ubuntu 12.04 64bit Edition)

PC(Program Counter) 뿐만 아니라 스택을 저장하는 거라 그런가?


코드상으로는 main()의 setjmp를 수행하는 지점이 돌아올 지점이고
longjmp에서 setjmp로 점프!
여러개의 setjmp로 여러 포인트를 잡아놓고
longjmp로 왔다 갔다 가능해 보이긴 하지만.. 까다로울 듯?

$ cat test.c

#include <stdio.h>

#include <setjmp.h>


jmp_buf pos;


void proc()

{

   static int i = 0;


   ++i;

   if(i<10)

       longjmp(pos, i);


   return;

}


int main()

{

   int a;


   a = setjmp(pos);

   printf("%d\n", a);

   proc();

   return 0;

}


[링크 : http://www.jiniya.net/wp/archives/5030]

[링크 : http://egloos.zum.com/studyfoss/v/5275830]


$ ./a.out
0
1
2
3
4
5
6
7
8
9



#include <setjmp.h>

int setjmp(jmp_buf env);

void longjmp(jmp_buf env, int val);


[링크 : http://linux.die.net/man/3/setjmp]

[링크 : http://linux.die.net/man/3/longjmp] 



'Programming > C Win32 MFC' 카테고리의 다른 글

printf 가변인자의 비밀?  (0) 2015.06.18
gcc 컴파일러 -D 옵션  (0) 2015.05.19
inline 함수..  (0) 2015.05.12
혼돈의 카오스 - 교차참조 헤더  (0) 2015.05.11
#ifdef 와 #ifdef ()의 차이  (0) 2015.04.13
Posted by 구차니



[링크 : http://www.oss.kr/oss_repository6/69515] 정적 분석 툴(오픈소스)

[링크 : http://biglook.tistory.com/16] 행정안전부 JAVA/C 코딩 룰

Posted by 구차니
회사일2015. 5. 18. 22:21

SDI

3G-SDI


이런게 나와서 먼가해서 찾아 봤더니 -_-


Gbps 의 G

즉, 12G SDI는 12Gbps를 전송할 수 있는 녀석





[링크 : http://en.wikipedia.org/wiki/Serial_digital_interface]

'회사일' 카테고리의 다른 글

raw video streaming  (0) 2015.09.16
UTC / Up the cable, coxial  (0) 2015.09.02
HD-AHD / HD-TVI / HD-CVI / EX-SDI  (0) 2015.04.16
ltib - linux target image builder  (0) 2014.11.24
FSL - Freescale Semiconductor, Ltd.  (0) 2014.11.18
Posted by 구차니

기사가 거의 없어 보이는건 기분 탓이려나...


요근래 정신없는 기사로는...

딱히 없네?


성회장이었나 송회장이었나도 조용하고

이완구 전 총리도 조용해지고

...

Posted by 구차니

테라비트 이더넷은 2017년 즈음에 표준화 예상

400Gbit/s를 현실적인 목표로 하고 있음

결론은.. optical fiber ...


[링크 : http://en.wikipedia.org/wiki/Terabit_Ethernet]


기가비트 이더넷이야 많이 들었겠지만

10GbE 이상의 것은 일반인들이 듣기 어려운 것이겠지만...

[링크 : http://en.wikipedia.org/wiki/Gigabit_Ethernet]


10GbE만 해도 구리선일 경우 15m~1m 이건 쓰라는 거리가 아니라

실질적으로 광케이블로 가야 하는 녀석들..

[링크 : http://en.wikipedia.org/wiki/10_Gigabit_Ethernet]


100GbE / 40GbE

음.. 왜 갑자기 40GbE지?

[링크 : http://en.wikipedia.org/wiki/100_Gigabit_Ethernet]

'이론 관련 > 네트워크 관련' 카테고리의 다른 글

rs232 / ttl 전기적 특성(?)  (0) 2016.09.22
i2c ...  (0) 2016.05.03
FEC - Forwarding equivalence class  (0) 2015.01.09
CIDR - Classless Inter-Domain Routing  (0) 2013.08.07
802.11n 108Mbps 150Mbps  (0) 2012.12.22
Posted by 구차니
하드웨어/Storage2015. 5. 18. 08:46

일단은.. 실패 -_-


공유기 사용중이라 (U+) 3260포트를 외부로 돌려주고 했으나..

[링크 : https://www.synology.com/en-us/knowledgebase/faq/299]



접속 자체가 실패 -_-

일부러 CHAP 암호를 다르게 하면 에러가 나는 걸 봐서는.. 다른 문제인거 같은데


이것 저것 눌러보다 보니.. 포털그룹에 주소가

외부 주소가 아닌 내부 주소로 잡혀서 경로를 찾지 못해 발생하는 문제로 보인다.


+

인터넷으로 검색해봐도.. VPN을 쓰거나 외부 아이피 먹이거나

NAT 환경에서는 쓰기 힘들다가 대세인듯? ㅠㅠ

[링크 : http://www.clien.net/cs2/bbs/board.php?bo_table=cm_nas&wr_id=4380]

'하드웨어 > Storage' 카테고리의 다른 글

ds cloud 이상 CPU/RAM 사용  (0) 2015.06.02
synology DSM 5.2 절전기능 차이점?  (0) 2015.05.28
synology iSCSI  (0) 2015.05.15
win7 + synology NAS iSCSI 연동  (0) 2015.05.14
synology DSM 5.2-5565 업데이트  (0) 2015.05.12
Posted by 구차니

도메인도 질러야 하는데 흑흑

이거 사도 못할거 같고 어쩌징? ㅠㅠ

자식들에게 유산으로 게임을 남겨줘야 하나!?!?!? ㅠㅠ





Posted by 구차니











'개소리 왈왈 > 사진과 수다' 카테고리의 다른 글

오래되어 간 것들에 대한 안타까움  (0) 2016.05.11
아빠의 지름 - 렌즈 컨버터  (0) 2016.01.04
폭설  (0) 2015.01.18
10km 상공에서의 해맞이  (2) 2014.10.31
10km 상공의 별자리  (0) 2014.10.31
Posted by 구차니