只有注册用户登录后才能阅读该文。 阅读全文
posted @ 2012-05-03 11:47 笑笑小白 阅读(39) 评论(0) 推荐(0)
摘要: int ACE_TMAIN(int argc, ACE_TCHAR* argv[]){ int port=30000; int conPortNum=5000; std::string conf="server.conf"; bool mode=true; bool display=true; ACE_Get_Opt cmdLine(argc,argv,"P:C:M:D:"); int cnt=0; int opt; while((opt=cmdLine())!=-1){ switch(opt){ case 'P': port=atoi( 阅读全文
posted @ 2012-05-03 10:38 笑笑小白 阅读(337) 评论(0) 推荐(0)
摘要: #编译设置export CXX:=g++#调试export CXXFLAGS:=-g2 -O0export CXXFLAGS:=-g0 -O2#export LDFLAGS:=-static#ACE目录export CUR_DIR:=$(shell pwd)export ACE_ROOT:=${CUR_DIR}/../ACE#SPEEX目录export SPEEXROOT:=${CUR_DIR}/../speex#Codec目录export CODECROOT:=${CUR_DIR}/Codec#Packet目录export PACKETROOT:=${CUR_DIR}/Packet#公共库目 阅读全文
posted @ 2012-05-03 09:04 笑笑小白 阅读(1086) 评论(0) 推荐(0)