Click here to Skip to main content
15,892,697 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
this is my code

C++
#include "tcpclient.h"
#include<QThread>
#include <QHostAddress>
#include<iostream>
using namespace std;
tcpclient::tcpclient(QObject* parent): QObject(parent)
{
  connect(&client, SIGNAL(connected()),this, SLOT(startTransfer()));

}

tcpclient::~tcpclient()
{
  client.close();
}

void tcpclient::start(QString address, quint16 port)
{
  QHostAddress addr(address);
  client.connectToHost(addr, port);

}

void tcpclient::startTransfer()
{
  client.write("hello world", 12);
   char buffer[1024]/* = "Hello world"*/;
   connect(&client, SIGNAL(readyRead()),this, SLOT(receivedata()));

}
void tcpclient::receivedata()
{
    char buffer[1024] = {0};
     client.read(buffer, client.bytesAvailable());
     cout << buffer << endl;
     cout.flush();
    
    client.write("inifinity sending", 18);
     connect(&client, SIGNAL(readyRead()),this, SLOT(receivedata()));

}
void tcpclient::closing()
{
    cout<<"closing";
    client.close();
}


this client send strings to a server and the server is receiving it

when i try it it send the first string hello world then send inifinity sending one time and receive the answer from the server then when try to send it again there is a Operating System error segmentation fault

my operating system is LINUX

[edit]SHOUTING removed - OriginalGriff[/edit]
Posted
Updated 3-Oct-12 1:10am
v3
Comments
OriginalGriff 3-Oct-12 7:10am    
DON'T SHOUT. Using all capitals is considered shouting on the internet, and rude (using all lower case is considered childish). Use proper capitalisation if you want to be taken seriously.
amir tarek 3-Oct-12 7:48am    
ok thank you to do this for me

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900