#include <netinet/ip_icmp.h>


여기서 에러가 발생하는 경우가 있었습니다.

제가 능력이 부족한 문제였지만..

결론만 간단히 이야기 하면, 

앞부분에

#include <netinet/in_systm.h>

#include <netinet/in.h>

#include <netinet/ip.h>


이 부분도 같이 include  하시면 잘 되더라구요...

열심히 공부하겠습니다ㅠㅠ
Posted by Parker Falcon
http://www.ohmynews.com/NWS_Web/View/at_pg.aspx?CNTN_CD=A0001046378&CMPT_CD=P0000#none

뭐 이렇든 저렇든

이상한 사람 취급하는 사람과는 다른모습이군요 :)

'Analog Life' 카테고리의 다른 글

# 20090131  (1) 2009.02.01
ㅋㅋ  (1) 2009.01.18
요리기록 - 직접 끓인 라면 #1  (0) 2008.11.21
트와자미 :: Trois Amis  (0) 2008.10.27
이명박이 생각하는 IT  (0) 2008.10.23
Posted by Parker Falcon
1.0.6에서는 제대로 작동 하던 기능이
1.1.0인가 1.1.1로 넘어오면서 제대로 작동하지 않았습니다.

                function dispBoardWrite() {
            // 권한 체크
            if(!$this->grant->write_document) return $this->dispBoardMessage('msg_not_permitted');
        
         // check point
         if(Context::get('is_logged')) {
            $logged_info = Context::get('logged_info');
            $oPointModel = &getModel('point');
        $current_point = $oPointModel->getPoint($logged_info->member_srl);
        $oModuleModel = &getModel('module');
        $point_config = $oModuleModel->getModulePartConfigs('point');
        $module_srl = Context::get('module_srl');
        $current_module_point = ($point_config[$module_srl]['insert_document']? $point_config[$module_srl]['insert_document'] : $point_config->insert_document);
        if ($current_point + $current_module_point < 0) return $this->dispBoardMessage('msg_not_enough_point');



예전과 지금의 Module의 Config를 가져오는 방법이 달라져서 제대로 작동하지 않았습니다.
1.1.1에서 적용중인 자료입니다.
Posted by Parker Falcon