반응형
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 OpenGL
- 재귀함수
- 스타크래프트2
- QTcpServer
- 양평역
- 고속도로
- 이륜차
- 정성하
- 오토바이
- 잡담
- 알람프로그램
- Java
- 윈도우7
- 스타2
- Qt4
- FFI
- HTML
- 마영전
- Qt 소켓프로그래밍
- 디자이어HD
- vuejs
- 안드로이드
- 엑티브엑스
- qt 설치
- QT
- c언어
- 자바
- 자료구조
- android SAF
- 바이크
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