listen=YES
#listen_ipv6=YES
目前分類:程式語言 (14)
- Mar 31 Sat 2012 09:28
vsftpd 續傳功能驗證
- Jul 15 Fri 2011 15:47
passing the file descriptor by unix domain socket
Unix domain sockets have a unique ability to pass file descriptors.
#include <sys/sockets.h>
- Apr 26 Tue 2011 15:23
astyle
- Nov 11 Thu 2010 13:20
dm365 yuv轉換bmp
usage:
- Nov 08 Mon 2010 16:21
windows socket programming(win32)
SimpleSockets http://sockets.carrierlabs.com/
// a example to grab a web page from yahoo and write to output.html
- Oct 29 Fri 2010 13:37
撰寫CGI
之前沒有真正寫過CGI.只有用過類似PHP, ASP的開發環境.所以其實對GET/POST的差異性,並沒有扎實的概念.現在玩了一下,就更清楚網頁運作的過程.
The HTML specifications technically define the difference between "GET"
and "POST"
so that former means that form data is to be encoded (by a browser) into a URL while the latter means that the form data is to appear within a message body. As a simplification, we might say that "GET"
is basically for just getting (retrieving) data whereas "POST"
may involve anything, like storing or updating data, or ordering a product, or sending E-mail.
- Oct 26 Tue 2010 16:19
CImg筆記
Cimg是一套用c++寫出來的image processing library. 只有一個將近四萬行header檔,但是可以協助做許多影像處理功能.不過因為source全集中在一個檔案,所以沒有文件有一點閱讀不易.
- Oct 25 Mon 2010 15:41
prototypes.js筆記
- Oct 21 Thu 2010 13:58
ActiveX放到WEB Server供下載使用
如果你寫完ActiveX的專案,編譯出.ocx or .dll檔案,可以利用regsvr32註冊系統當元件使用的,想要放到網頁供使用者下載.必須先打包成cab檔並且簽名過(signed).
手動產生cab步驟如下:
- Oct 14 Thu 2010 15:23
convering between tchar and char
轉換VC裡的字串型態,因為常用到,所以記錄下來.
void wtoc(char* Dest, TCHAR* Source, int SourceSize /*useless parameter*/) { USES_CONVERSION; strcpy (Dest, T2A (Source)); }
- Oct 09 Sat 2010 18:43
MFC command line
呼叫函式GetCommandLine() { & CommandLineToArgvW() } API anytime可以取得命令列的資訊.
LPTSTR WINAPI GetCommandLine(void);
- Oct 04 Mon 2010 18:39
livemedia 實作RTSP Server
說實在的,我並沒有那麼喜歡LiveMedia的設計.即使很多人推薦它.使用它的理由,主要的原因就是有人在持續維護它.或者有一天我很熟悉它的時候.
用它來開發一個RTSP Server,如果資料來源是檔案.幾乎不太需要做修改.即可以完成.但是如果要改自己的input source機制,沒有弄懂一些interfaces和virtual functions,我覺得想用它完成自己的RTSP Server是有點困難的,尤其目前為止我還沒找到文件很完整的介紹它.唯一,就是讀source code.和一堆test programs...但可能沒有涵蓋到你要的usecase.
- Sep 29 Wed 2010 13:19
用Visual Studio2008開發ActiveX應用程式