Giriş yap
En iyi yollayıcılar
Hello EMO | ||||
EMO | ||||
eMoStyLe | ||||
BesimBICER | ||||
GameKinG | ||||
Crysis | ||||
~>!.DεvιLρяιεsт.!<~ | ||||
MeTaL | ||||
TrueCrime | ||||
djhayal3t |
Istatistikler
Toplam 203 kayıtlı kullanıcımız varSon kaydolan kullanıcımız: crayzboy76
Kullanıcılarımız toplam 1186 mesaj attılar bunda 862 konu
Arama
Sosyal yer imi
Sosyal bookmarking sitesinde Emo, Emo nedir, Emo resimleri, Emo Kıyafetleri, Emo Sözleri, Emo Oyunları, EmoTurkey, Emo Nickler, Emo Avatarları, Punk, Punk Resimleri, Punk Avatarları, Rock, Rock Resimleri, Rock Avatarları, Msn Nickleri, Msn Avatarları, Müzik adresi saklayın ve paylaşın
Sosyal bookmarking sitesinde EMO Style ForumPro - Hos Geldiniz adresi saklayın ve paylaşın
Kimler hatta?
Toplam 6 kullanıcı online :: 0 Kayıtlı, 0 Gizli ve 6 Misafir Yok
Sitede bugüne kadar en çok 217 kişi C.tesi Tem. 29, 2017 1:46 am tarihinde online oldu.
En son konular
Reklam
Socket Tutorial
1 sayfadaki 1 sayfası
Socket Tutorial
[quote='xanphirex']
in order to use the Winsock API you have to link to the
libraries mpr.lib and wsock32.lib
after that you will probably want Declare a couple variables for your server and port
ok now we have made a usable socket so lets use it to connect to google witch is the ip address assigned the variable server.
and here is the full source
[/quote]
in order to use the Winsock API you have to link to the
libraries mpr.lib and wsock32.lib
- Kod:
#pragma comment(lib,"Ws2_32")
#include <iostream>
#include <winsock2.h>
after that you will probably want Declare a couple variables for your server and port
- Kod:
using namespace std;
int main()
{
char *server ="74.124.224.180";
int port = 80;
- Kod:
WSADATA wsadata;
WSAStartup(MAKEWORD(2,0), &wsadata);
- Kod:
SOCKET sock;
SOCKADDR_IN sin;
sock = socket(AF_INET, SOCK_STREAM, 0);
ok now we have made a usable socket so lets use it to connect to google witch is the ip address assigned the variable server.
- Kod:
sin.sin_addr.s_addr = inet_addr(server);
sin.sin_family = AF_INET;
sin.sin_port = htons(port);
connect(sock, (SOCKADDR *)&sin, sizeof(sin));
- Kod:
if(sock == SOCKET_ERROR)
{
cout<<" socket has failed to connect";
}
else
{
cout<< "Connected!\n";
}
and here is the full source
- Kod:
#pragma comment(lib,"Ws2_32")
#include <iostream>
#include <winsock2.h>
using namespace std;
int main()
{
char *server ="74.124.224.180";
int port = 80;
WSADATA wsadata;
WSAStartup(MAKEWORD(2,0), &wsadata);
SOCKET sock;
SOCKADDR_IN sin;
sock = socket(AF_INET, SOCK_STREAM, 0);
sin.sin_addr.s_addr = inet_addr(server);
sin.sin_family = AF_INET;
sin.sin_port = htons(port);
connect(sock, (SOCKADDR *)&sin, sizeof(sin));
if(sock == SOCKET_ERROR)
{
cout<<" socket has failed to connect";
}
else
{
cout<< "Connected!\n";
}
system("pause");
}
[/quote]
Similar topics
» [C++] Winsock2 Tutorial
» [D3D][C++] No fog tutorial
» C++ -- DLL Tutorial { 2 } | Hp Mp Hook
» [Tutorial] D3D Crosshairs
» RSA encryption with OpenSSL (tutorial)
» [D3D][C++] No fog tutorial
» C++ -- DLL Tutorial { 2 } | Hp Mp Hook
» [Tutorial] D3D Crosshairs
» RSA encryption with OpenSSL (tutorial)
1 sayfadaki 1 sayfası
Bu forumun müsaadesi var:
Bu forumdaki mesajlara cevap veremezsiniz
Cuma Ağus. 29, 2014 8:33 am tarafından Hello EMO
» goldenchase.net maden yaparak para kazanma
Cuma Ağus. 29, 2014 8:18 am tarafından Hello EMO
» etichal hacker görsel egitim seti
Çarş. Ağus. 06, 2014 4:57 am tarafından Hello EMO
» KO TBL Source C#
Ptsi Ara. 09, 2013 6:36 am tarafından Hello EMO
» x86 Registers
C.tesi Ağus. 24, 2013 5:02 am tarafından Hello EMO
» [Tutorial] Pegando Address, Pointers de WYD
Çarş. Tem. 10, 2013 7:25 am tarafından Hello EMO
» [Tutorial] Pegando Address, Pointers de CS Metodo²
Çarş. Tem. 10, 2013 7:23 am tarafından Hello EMO
» [Tutorial] Aprendendo basico deASM OLLYDBG
Çarş. Tem. 10, 2013 7:22 am tarafından Hello EMO
» Basic C# DLL injector
Ptsi Tem. 08, 2013 7:48 am tarafından Hello EMO