반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- QT
- 디자이어HD
- 자료구조
- 엑티브엑스
- 윈도우7
- vuejs
- 잡담
- android SAF
- 재귀함수
- 양평역
- qt 설치
- 마영전
- 오토바이
- 고속도로
- Qt4
- 스타크래프트2
- 정성하
- 스타2
- 안드로이드
- 자바
- 바이크
- 알람프로그램
- HTML
- QTcpServer
- Java
- FFI
- c언어
- Qt 소켓프로그래밍
- 이륜차
- Qt OpenGL
Archives
- Today
- Total
목록소켓프로그래밍 (2)
프로그래밍과 잡담
[Qt] 간단한 Hello World 서버
#include #include #include class ReplyServer : public QTcpServer { Q_OBJECT public: ReplyServer(QObject *parent = 0); ~ReplyServer(); public slots: void makeConnection(); void send(); void disconnect(); private: QTcpSocket* tcp; }; ReplyServer::ReplyServer(QObject *parent) : QTcpServer(parent) { connect(this,SIGNAL(newConnection()), SLOT(makeConnection())); quint16 port = 5000; listen(QHostAddre..
프로그래밍/Qt[미사용]
2009. 8. 14. 22:24
아 소켓 프로그래밍 어떻게 하는겨..
아 뭔가 어렵네 ...
잡담
2009. 8. 6. 18:23