Torna indietro   Hardware Upgrade Forum > Software > Programmazione

DJI RS 5: stabilizzazione e tracking intelligente per ogni videomaker
DJI RS 5: stabilizzazione e tracking intelligente per ogni videomaker
Analizziamo nel dettaglio DJI RS 5, l'ultimo arrivato della famiglia Ronin progettato per videomaker solisti e piccoli studi. Tra tracciamento intelligente migliorato e ricarica ultra rapida, scopriamo come questo gimbal eleva la qualità delle produzioni.
AMD Ryzen 7 9850X3D: Zen 5, 3D V-Cache e frequenze al top per il gaming
AMD Ryzen 7 9850X3D: Zen 5, 3D V-Cache e frequenze al top per il gaming
AMD Ryzen 7 9850X3D è la nuova CPU gaming di riferimento grazie alla 3D V-Cache di seconda generazione e frequenze fino a 5,6 GHz. Nei test offre prestazioni superiori a 9800X3D e 7800X3D, confermando la leadership AMD nel gaming su PC.
Le soluzioni FSP per il 2026: potenza e IA al centro
Le soluzioni FSP per il 2026: potenza e IA al centro
In occasione del Tech Tour 2025 della European Hardware Association abbiamo incontrato a Taiwan FSP, azienda impegnata nella produzione di alimentatori, chassis e soluzioni di raffreddamento tanto per clienti OEM come a proprio marchio. Potenze sempre più elevate negli alimentatori per far fronte alle necessità delle elaborazioni di intelligenza artificiale.
Tutti gli articoli Tutte le news

Vai al Forum
Rispondi
 
Strumenti
Old 01-05-2004, 21:03   #1
Luc@s
Senior Member
 
L'Avatar di Luc@s
 
Iscritto dal: Apr 2002
Città: Vigevano(PV)
Messaggi: 2124
[C++]Sock

Ho cercato di farmi una lib socket per Lin-Win e questo il risultato:
Codice:
 
/// The Os inclusion
 #ifdef WINDOWS
 	#include <Winsock2.h>
    #include <windows.h> 
 #elif
 	#include <sys/types.h>
	#include <sys/socket.h>
	#include <netinet/in.h>
	#include <netdb.h>
 #endif	  

#include <string>

class WinClientSock
{
 std::string addr;
 #ifdef WINDOWS
  SOCKET sock_fd; /// the win socket
 #elif
  int sock_fd; /// the lin socket
 #endif
 struct sockaddr_in temp; /// the sockaddr structure
 struct hostent *h; /// the host structure
 int port;
 public:
 WinClientSock();
 WinClientSock(const std::string addr, int port);
 ~WinClientSock();
 int Open();
 void Exit();
 const char *getHost()
 {
  return addr.c_str();
 };
 const int getPort()
 {
  return port;
 };
 int Receve(char *buf);
 int Send(char * buff);
};

WinClientSock::WinClientSock() 
{
 addr = "localhost";
 /// defining port
 #ifdef DEF_PORT
 	port = 6000;
 #elifdef DEF_PORT
 	port = DEF_PORT;
 #endif	  
}

WinClientSock::WinClientSock(const std::string addr, int port)
{
 this->port = port;
 this->addr = addr;
}

WinClientSock::~WinClientSock()
{ 	
		Exit();
}

int WinClientSock::Open()
{
   int ret;
   #ifdef WINDOWS
 	WSADATA wsaData;
	WORD version;
    int error;
	
    version = MAKEWORD( 2, 0 );
    error = WSAStartup( version, &wsaData );
	
	/* check for error */
	if ( error != 0 )
	{
	 return -1;
	}
	
	/* check for correct version */
	if ( LOBYTE( wsaData.wVersion ) != 2 || HIBYTE( wsaData.wVersion ) != 0 )
	{
     WSACleanup();
	 return -1;
	}
    
	sock_fd = socket( AF_INET, SOCK_STREAM, 0 );
	
	h = gethostbyname(addr.c_str());
	
	temp.sin_family = AF_INET;
	temp.sin_addr.s_addr = ((struct in_addr *)(h->h_addr))->s_addr;
	temp.sin_port = htons(port);
	
	if ( connect( sock_fd, (sockaddr*)&temp, sizeof(temp) ) == SOCKET_ERROR )
	{
     /* could not connect to server */
     ret = -1;
	}
	else
	{
	 ret = sock_fd;
	}

   #elif
  	temp.sin_family = AF_INET;
	temp.sin_port = htons(PORT);
	
	h = gethostbyname(addr.c_str());
	
	if (0 == h) return -1;
	
	bcopy(h->h_addr,&temp.sin_addr,h->h_length);
	
	sock_fd = socket(AF_INET,SOCK_STREAM,0);	
	
	errore = connect(sock_fd,(struct sockaddr*) &temp, sizeof(temp));

	if(errore == 0)
	{
	  ret = sock_fd;
	}
	else
	{
      ret = -1;
	}
   #endif
   return ret;
}

void WinClientSock::Exit()
{
 #ifdef WINDOWS
 	closesocket(sock_fd);
	WSACleanup();
 #elif
    close(sock_fd);
 #endif
}

int WinClientSock::Receve(char *buf)
{
    if(recv(sock_fd, buf, strlen(buf), 0 ) == 0)
	{
		return -1;
	}
}

int WinClientSock::Send(char *buf)
{
    if(send(sock_fd, buf, strlen(buf), 0 ) == 0)
	{
		return -1;
	}
}
Il problema è che provandola:
Codice:
 
#include <iostream>
#include <cstring>
#include "WinSockClient.hpp"

using namespace std;

int main(int argc, char *argv[])
{
  WinClientSock sk("http://www.ngi.it", 23);
  SOCKET client =  (SOCKET) sk.Open();
  if(-1 != client)
  {
	  cout << "Open Ok \n";
     
	  char * buffer = new char[32];

	  /*
	  if(sk.Receve(buffer) == -1)
	  {
		cout << "Error in recv\n";
	  }
	  else
	  {
		cout << buffer;
	  }
      */
	  
	  if(sk.Send(buffer) == -1)
	  {
		cout << "Error in send\n";
	  }
	  else
	  {
		cout << "Ok\n";
	  }
	  
	  delete[] buffer;
  }
  char c;
  cin >> c;
  return 0;
}
Mi da errore di memoria che doveva essere read :(

Why???

Tnk 10000000000000
__________________
Gnu/Linux User
Luc@s è offline   Rispondi citando il messaggio o parte di esso
Old 01-05-2004, 21:55   #2
Luc@s
Senior Member
 
L'Avatar di Luc@s
 
Iscritto dal: Apr 2002
Città: Vigevano(PV)
Messaggi: 2124
ho semi risolto, ora pero mi da connection ok ma nientaltro su linux e niente di niente su win:
Codice:
/// The Os inclusion
 #ifdef WINDOWS
 	#include <Winsock2.h>
        #include <windows.h> 
 #else
 	#include <sys/types.h>
	#include <sys/socket.h>
	#include <netinet/in.h>
	#include <netdb.h>
 #endif	  

#include <string>

class WinClientSock
{
 std::string addr;
 #ifdef WINDOWS
  SOCKET sock_fd; /// the win socket
 #else
  int sock_fd; /// the lin socket
 #endif
 struct sockaddr_in temp; /// the sockaddr structure
 struct hostent *h; /// the host structure
 int port;
 public:
 WinClientSock(int port);
 WinClientSock(const std::string addr, int port);
 ~WinClientSock();
 int Open();
 void Exit();
 const char *getHost()
 {
  return addr.c_str();
 };
 const int getPort()
 {
  return port;
 };
 int Receve(char *buf);
 int Send(char * buff);
};

WinClientSock::WinClientSock(int port) 
{
 this->port = port;
}

WinClientSock::WinClientSock(const std::string addr, int port)
{
 this->port = port;
 this->addr = addr;
}

WinClientSock::~WinClientSock()
{ 	
 Exit();
}

int WinClientSock::Open()
{
   int ret;
   #ifdef WINDOWS
 	WSADATA wsaData;
	WORD version;
    int error;
	
    version = MAKEWORD( 2, 0 );
    error = WSAStartup( version, &wsaData );
	
	/* check for error */
	if ( error != 0 )
	{
	 return -1;
	}
	
	/* check for correct version */
	if ( LOBYTE( wsaData.wVersion ) != 2 || HIBYTE( wsaData.wVersion ) != 0 )
	{
     WSACleanup();
	 return -1;
	}
    
	sock_fd = socket( AF_INET, SOCK_STREAM, 0 );
	
	h = gethostbyname(addr.c_str());
	
	temp.sin_family = AF_INET;
	temp.sin_addr.s_addr = ((struct in_addr *)(h->h_addr))->s_addr;
	temp.sin_port = htons(port);
	
	if ( connect( sock_fd, (sockaddr*)&temp, sizeof(temp) ) == SOCKET_ERROR )
	{
     /* could not connect to server */
     ret = -1;
	}
	else
	{
	 ret = sock_fd;
	}

   #else
  	temp.sin_family = AF_INET;
	temp.sin_port = htons(port);
	
	h = gethostbyname(addr.c_str());
	
	if (0 == h) return -1;
	
	bcopy(h->h_addr,&temp.sin_addr,h->h_length);
	
	sock_fd = socket(AF_INET,SOCK_STREAM,0);	
	
	int errore = connect(sock_fd,(struct sockaddr*) &temp, sizeof(temp));

	if(errore == 0)
	{
	  ret = sock_fd;
	}
	else
	{
      ret = -1;
	}
   #endif
   return ret;
}

void WinClientSock::Exit()
{
 #ifdef WINDOWS
    closesocket(sock_fd);
    WSACleanup();
 #else
    ///close(sock_fd);
 #endif
}

int WinClientSock::Receve(char *buf)
{
    if(recv(sock_fd, buf, strlen(buf), 0 ) == 0)
	{
		return -1;
	}
}

int WinClientSock::Send(char *buf)
{
    if(send(sock_fd, buf, strlen(buf), 0 ) == 0)
	{
		return -1;
	}
}
__________________
Gnu/Linux User

Ultima modifica di Luc@s : 01-05-2004 alle 22:01.
Luc@s è offline   Rispondi citando il messaggio o parte di esso
Old 02-05-2004, 11:57   #3
ilsensine
Senior Member
 
L'Avatar di ilsensine
 
Iscritto dal: Apr 2000
Città: Roma
Messaggi: 15625
IMHO il tuo codice necessita di una certa revisione. Innanzitutto, visto che le funzioni socket POSIX di windows sono molto simili a quelle su linux, dovresti cercare di accorpare più codice possibile. Inoltre fai attenzione che (l'ho verificato in passato) la gethostbyname FALLISCE su win32 se passi un valido indirizzo IP al posto di un nome (inoltre, ti sei scordato la verifica h==NULL nella verisone win32). Sperabilmente, gli ultimi windows non hanno questa "feature".
Alcune cose qua e là:

Codice:
    version = MAKEWORD( 2, 0 );
Anche versioni precedenti di winsock funzionano
Codice:
 #ifdef WINDOWS
    closesocket(sock_fd);
    WSACleanup();
 #else
    ///close(sock_fd);
 #endif
}
La close nella versione linux va bene. Per semplificate il codice, usa la sola closesocket e, per linux, definisci
#define closesocket(x) close(x)
La WSACleanup è scorretta così come l'hai scritta: potresti aver aperto più socket!!

Codice:
int WinClientSock::Send(char *buf)
{
    if(send(sock_fd, buf, strlen(buf), 0 ) == 0)
 {
  return -1;
 }
}
...se volessi inviare qualcosa che non è una stringa?
Nota che la send può fallire con valore <0!

Codice:
int WinClientSock::Receve(char *buf)
{
    if(recv(sock_fd, buf, strlen(buf), 0 ) == 0)
 {
  return -1;
 }
}
Ma per favore!
__________________
0: or %edi, %ecx; adc %eax, (%edx); popf; je 0b-22; pop %ebx; fadds 0x56(%ecx); lds 0x56(%ebx), %esp; mov %al, %al
andeqs pc, r1, #147456; blpl 0xff8dd280; ldrgtb r4, [r6, #-472]; addgt r5, r8, r3, ror #12
ilsensine è offline   Rispondi citando il messaggio o parte di esso
Old 03-05-2004, 14:37   #4
Luc@s
Senior Member
 
L'Avatar di Luc@s
 
Iscritto dal: Apr 2002
Città: Vigevano(PV)
Messaggi: 2124
ho risolto usando la lib in allegato :P
Allegati
File Type: rar linsock.rar (18.9 KB, 4 visite)
__________________
Gnu/Linux User
Luc@s è offline   Rispondi citando il messaggio o parte di esso
Old 03-05-2004, 15:04   #5
ilsensine
Senior Member
 
L'Avatar di ilsensine
 
Iscritto dal: Apr 2000
Città: Roma
Messaggi: 15625
Quote:
Originariamente inviato da Luc@s
ho risolto usando la lib in allegato :P
Stai scherzando, vero? Non avrai intenzione di usare quella roba?
Mi sembra più un esempio che una libreria utilizzabile
__________________
0: or %edi, %ecx; adc %eax, (%edx); popf; je 0b-22; pop %ebx; fadds 0x56(%ecx); lds 0x56(%ebx), %esp; mov %al, %al
andeqs pc, r1, #147456; blpl 0xff8dd280; ldrgtb r4, [r6, #-472]; addgt r5, r8, r3, ror #12
ilsensine è offline   Rispondi citando il messaggio o parte di esso
Old 03-05-2004, 15:09   #6
Luc@s
Senior Member
 
L'Avatar di Luc@s
 
Iscritto dal: Apr 2002
Città: Vigevano(PV)
Messaggi: 2124
Quote:
Originariamente inviato da ilsensine
Stai scherzando, vero? Non avrai intenzione di usare quella roba?
Mi sembra più un esempio che una libreria utilizzabile
per i miei scopi attuali..............mi va bene
Intanto ho imparato un po di + di quello che sapevo.
Poi se mi servira la migliorero
__________________
Gnu/Linux User
Luc@s è offline   Rispondi citando il messaggio o parte di esso
Old 03-05-2004, 15:11   #7
ilsensine
Senior Member
 
L'Avatar di ilsensine
 
Iscritto dal: Apr 2000
Città: Roma
Messaggi: 15625
Migliorarla? Intendi "la _scriverò_"

Non inalare quella roba, fa male
__________________
0: or %edi, %ecx; adc %eax, (%edx); popf; je 0b-22; pop %ebx; fadds 0x56(%ecx); lds 0x56(%ebx), %esp; mov %al, %al
andeqs pc, r1, #147456; blpl 0xff8dd280; ldrgtb r4, [r6, #-472]; addgt r5, r8, r3, ror #12
ilsensine è offline   Rispondi citando il messaggio o parte di esso
Old 03-05-2004, 15:16   #8
Luc@s
Senior Member
 
L'Avatar di Luc@s
 
Iscritto dal: Apr 2002
Città: Vigevano(PV)
Messaggi: 2124
Quote:
Originariamente inviato da ilsensine
Migliorarla? Intendi "la _scriverò_"
Ovviamente
__________________
Gnu/Linux User
Luc@s è offline   Rispondi citando il messaggio o parte di esso
 Rispondi


DJI RS 5: stabilizzazione e tracking intelligente per ogni videomaker DJI RS 5: stabilizzazione e tracking intelligent...
AMD Ryzen 7 9850X3D: Zen 5, 3D V-Cache e frequenze al top per il gaming AMD Ryzen 7 9850X3D: Zen 5, 3D V-Cache e frequen...
Le soluzioni FSP per il 2026: potenza e IA al centro Le soluzioni FSP per il 2026: potenza e IA al ce...
AWS annuncia European Sovereign Cloud, il cloud sovrano per convincere l'Europa AWS annuncia European Sovereign Cloud, il cloud ...
Redmi Note 15 Pro+ 5G: autonomia monstre e display luminoso, ma il prezzo è alto Redmi Note 15 Pro+ 5G: autonomia monstre e displ...
Il National Reconnaissance Office statun...
Volkswagen avvia la produzione su CEA: c...
La crisi delle memorie non influenzer&ag...
MoM-z14 è la galassia scoperta da...
Da Sony nuovi display professionali dell...
Com'è fatta una delle e-bike pi&u...
iPhone 16 domina il 2025: ecco la classi...
Huawei a supporto delle startup: potenzi...
Iliad è il miglior operatore di l...
Le pompe di calore parlano italiano: Bon...
Moltbot non è solo un chatbot: ag...
Sinner e Alcaraz fermati dall'arbitro: i...
L'audio-video professionale arriva a MIR...
Musk fa i complimenti alla Cina: nel set...
Agcom ha avviato verifiche sul format 'F...
Chromium
GPU-Z
OCCT
LibreOffice Portable
Opera One Portable
Opera One 106
CCleaner Portable
CCleaner Standard
Cpu-Z
Driver NVIDIA GeForce 546.65 WHQL
SmartFTP
Trillian
Google Chrome Portable
Google Chrome 120
VirtualBox
Tutti gli articoli Tutte le news Tutti i download

Strumenti

Regole
Non Puoi aprire nuove discussioni
Non Puoi rispondere ai messaggi
Non Puoi allegare file
Non Puoi modificare i tuoi messaggi

Il codice vB è On
Le Faccine sono On
Il codice [IMG] è On
Il codice HTML è Off
Vai al Forum


Tutti gli orari sono GMT +1. Ora sono le: 19:49.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2026, Jelsoft Enterprises Ltd.
Served by www3v