Torna indietro   Hardware Upgrade Forum > Software > Programmazione

DLSS 4.5: con Dynamic Frame Generation e MFG 6X NVIDIA alza la posta
DLSS 4.5: con Dynamic Frame Generation e MFG 6X NVIDIA alza la posta
DLSS 4.5 introduce Dynamic Multi Frame Generation e MFG 6X, permettendo fino a cinque frame generati per ogni frame renderizzato. I test su Cyberpunk 2077 e 007 First Light mostrano forti incrementi di FPS e riduzione della latenza su RTX 5090 Laptop. Migliorano fluidità, stabilità e qualità visiva.
Plaud NotePin S, il registratore IA si fa indossabile (ma è facile da perdere)
Plaud NotePin S, il registratore IA si fa indossabile (ma è facile da perdere)
Quattro modi di indossarlo, stessa app del Plaud Note Pro e integrazione con il desktop. Il registratore IA da indossare di Plaud eccelle in mobilità, ma resta vincolato all'abbonamento ed è facile da perdere
Redmi Watch 6 in prova: lo smartwatch con ampio display da 2000 nit a meno di 100 euro
Redmi Watch 6 in prova: lo smartwatch con ampio display da 2000 nit a meno di 100 euro
Xiaomi ha portato Redmi Watch 6 anche sul mercato italiano, puntando su un display AMOLED da 2,07 pollici con picco di luminosità a 2000 nit, frame in alluminio da 9,9mm e un'autonomia dichiarata di 12 giorni. Lo smartwatch gira su HyperOS 3 e integra GPS, Bluetooth 5.4 e oltre 150 sport mode. Il tutto a meno di 100 euro
Tutti gli articoli Tutte le news

Vai al Forum
Rispondi
 
Strumenti
Old 04-03-2004, 23:25   #1
vici_1
Senior Member
 
L'Avatar di vici_1
 
Iscritto dal: Aug 2002
Messaggi: 581
[C] utilizzare il protocollo SMTP

mi connetto al server di posta e mi ricosce, ma i comandi dopo HELO vengono rifiutati

Codice:
ecco la risposta dal server :

Server echoed1 '220 vsmtp3.tin.it ESMTP Service (7.0.019) ready
'
Server echoed2 '250-vsmtp3.tin.it Missing required domain name in EHLO, defaulte
d to your IP address [80.107.21.103]
250-DSN
250-8BITMIME
250-PIPELINING
250-HELP
250-AUTH=LOGIN
250-AUTH LOGIN CRAM-MD5 DIGEST-MD5 PLAIN
250-DELIVERBY 300
250 SIZE 29999104
'
Server echoed3 '500  command unrecognized
equired domain name in EHLO, defaulted to your IP address [80.107.21.103]
250-DSN
250-8BITMIME
250-PIPELINING
250-HELP
250-AUTH=LOGIN
250-AUTH LOGIN CRAM-MD5 DIGEST-MD5 PLAIN
250-DELIVERBY 300
250 SIZE 29999104
'
Server echoed4 '500  command unrecognized
equired domain name in EHLO, defaulted to your IP address [80.107.21.103]
250-DSN
250-8BITMIME
250-PIPELINING
250-HELP
250-AUTH=LOGIN
250-AUTH LOGIN CRAM-MD5 DIGEST-MD5 PLAIN
250-DELIVERBY 300
250 SIZE 29999104
'
Sending 'Connection Closing' command
Codice:
Questo e' il pezzo del sorgente :

#define MESHELO "ehlo\r\n\0"    
#define MESQUIT "QUIT\r\n\0"    
#define MESHELP "HELP\r\n\0"    
#define MESNOOP "NOOP\r\n\0"    
...
int main(int argc, char *argv[])
{
	if ( argc < 2 ) Usage();

	if (strcmp(argv[1], "client") == 0 )
	{
		// initialize wsock32.dll, requesting winsock 1.1
		if (argc!=3 ) Usage();
		if (!InitializeWinsock (MAKEWORD(1,1) ) ) return 1;
		client(argv[2]);
		WSACleanup();
	}
	return 0;
}

void client(char * server_IP)
{
SOCKET fd; 			// "file" descriptor for the network socket
SOCKADDR_IN saddr;
char buf[MAX_STRING];

    struct hostent *h;

    if ((h=gethostbyname(server_IP)) == NULL) {  /* get the host info */
		error("gethostbyname");
        exit(1);
    }
    printf("Host name  : %s\n", h->h_name);
    printf("IP Address : %s\n\n",inet_ntoa(*((struct in_addr *)h->h_addr)));

	if ((fd=socket(AF_INET,SOCK_STREAM,0)) == INVALID_SOCKET)
		error("Client: socket not connected ");

	saddr.sin_family = AF_INET;
	saddr.sin_addr.s_addr = inet_addr(inet_ntoa(*((struct in_addr *)h->h_addr))); 
	saddr.sin_port = htons(PORT);
	
	// request connection to server socket (remote machine)
	if (connect(fd, (LPSOCKADDR) &saddr, sizeof(saddr)) == SOCKET_ERROR)
		error("Client: connect ");

	if( recv(fd, buf, sizeof(buf), 0) == SOCKET_ERROR )
		error("Client: receiving failure ");

	printf("Server echoed1 '%s' \n",buf);
	
	if( send(fd, MESHELO, strlen(MESHELO)+1, 0) == SOCKET_ERROR )
		error("Server: sending failure ");
 		
	if( recv(fd, buf, sizeof(buf), 0) == SOCKET_ERROR )
		error("Client: receiving failure ");

	printf("Server echoed2 '%s' \n",buf);
//----
	if( send(fd, MESHELP, strlen(MESHELP)+1, 0) == SOCKET_ERROR )
		error("Server: sending failure ");
 		
	if( recv(fd, buf, sizeof(buf), 0) == SOCKET_ERROR )
		error("Client: receiving failure ");

	printf("Server echoed3 '%s' \n",buf);

	if( send(fd, MESQUIT, strlen(MESQUIT)+1, 0) == SOCKET_ERROR )
		error("Server: sending failure ");
 		
	if( recv(fd, buf, sizeof(buf), 0) == SOCKET_ERROR )
		error("Client: receiving failure ");

	printf("Server echoed4 '%s' \n",buf);
//<<<<<
//---	
	printf("Sending 'Connection Closing' command\n\n");

	if (closesocket(fd) == SOCKET_ERROR)
		error("Client: closing socket ");
}
vici_1 è offline   Rispondi citando il messaggio o parte di esso
Old 05-03-2004, 13:18   #2
cionci
Senior Member
 
L'Avatar di cionci
 
Iscritto dal: Apr 2000
Città: Vicino a Montecatini(Pistoia) Moto:Kawasaki Ninja ZX-9R Scudetti: 29
Messaggi: 53971
Prova con HELO al posto di EHLO...EHLO ha una sintassi diversa che non mi ricordo...
cionci è offline   Rispondi citando il messaggio o parte di esso
Old 05-03-2004, 22:24   #3
vici_1
Senior Member
 
L'Avatar di vici_1
 
Iscritto dal: Aug 2002
Messaggi: 581
Quote:
Originariamente inviato da cionci
Prova con HELO al posto di EHLO...EHLO ha una sintassi diversa che non mi ricordo...
Purtroppo avevo gia' provato, ma il risultato e' stato esattamente lo stesso , solo che in risposta il server, con HELO, non mi da l'elenco dei comandi
250-DSN
250-8BITMIME
250-PIPELINING
250-HELP
250-AUTH=LOGIN
250-AUTH LOGIN CRAM-MD5 DIGEST-MD5 PLAIN
250-DELIVERBY 300
250 SIZE 29999104

come invece avviene con EHLO.

Ecco il risultato con HELO :
Codice:
Host name  : mail.tin.it
IP Address : 62.211.72.20

Server echoed1 '220 vsmtp3.tin.it ESMTP Service (7.0.019) ready
'
Server echoed2 '250 vsmtp3.tin.it Missing required domain name in HELO, defaulte
d to your IP address [212.161.20.165]
'
Server echoed3 '500  command unrecognized
equired domain name in HELO, defaulted to your IP address [212.161.20.165]
'
Server echoed4 '500  command unrecognized
equired domain name in HELO, defaulted to your IP address [212.161.20.165]
'
Sending 'Connection Closing' command
vici_1 è offline   Rispondi citando il messaggio o parte di esso
Old 05-03-2004, 22:30   #4
cionci
Senior Member
 
L'Avatar di cionci
 
Iscritto dal: Apr 2000
Città: Vicino a Montecatini(Pistoia) Moto:Kawasaki Ninja ZX-9R Scudetti: 29
Messaggi: 53971
Scrivi HELO seguito da una qualsiasi stringa...
cionci è offline   Rispondi citando il messaggio o parte di esso
Old 05-03-2004, 22:53   #5
vici_1
Senior Member
 
L'Avatar di vici_1
 
Iscritto dal: Aug 2002
Messaggi: 581
Ho provato cosi' e in effetti qualche cosa e' cambiata
Codice:
#define MESHELO "HELO ciao\r\n\0"
Risposta

Codice:
Host name  : mail.tin.it
IP Address : 62.211.72.20

Server echoed1 '220 vsmtp4.tin.it ESMTP Service (7.0.019) ready
'
Server echoed2 '250 vsmtp4.tin.it
SMTP Service (7.0.019) ready
'
Server echoed3 '500  command unrecognized
vice (7.0.019) ready
'
Server echoed4 '500  command unrecognized
vice (7.0.019) ready
'
Sending 'Connection Closing' command
vici_1 è offline   Rispondi citando il messaggio o parte di esso
 Rispondi


DLSS 4.5: con Dynamic Frame Generation e MFG 6X NVIDIA alza la posta DLSS 4.5: con Dynamic Frame Generation e MFG 6X ...
Plaud NotePin S, il registratore IA si fa indossabile (ma è facile da perdere) Plaud NotePin S, il registratore IA si fa indoss...
Redmi Watch 6 in prova: lo smartwatch con ampio display da 2000 nit a meno di 100 euro Redmi Watch 6 in prova: lo smartwatch con ampio ...
Mad Catz M.M.O. 7+: lo stesso DNA del R.A.T. 8+ ADV, ma con molti più pulsanti Mad Catz M.M.O. 7+: lo stesso DNA del R.A.T. 8+ ...
Radeon RX 9070 GRE, AMD la porta in tutto il mondo | Recensione Gigabyte Gaming OC Radeon RX 9070 GRE, AMD la porta in tutto il mon...
WWDC 2026 è oggi: come seguire il keynot...
L'IA cambia Internet: i bot superano il ...
DeepSeek V4 Pro supera GPT 5.5 Pro: nei ...
Destiny 2 sta per morire, la community s...
Microsoft cede: la ricerca di Windows 11...
Dopo quasi 30 anni, l'originale Thief di...
ASML è l'azienda più prezi...
Microsoft conferma che Gears of War: E-D...
All'Xbox Games Showcase 2026, Metro 2039...
Il prossimo pieghevole di Vivo si svela ...
Meta ammette la falla IA su Instagram: v...
Bloober Team porta l'horror psicologico ...
L'IA sta prosciugando le riserve idriche...
Europa spaccata in due: Italia e Germani...
TOP 10 offerte Amazon del lunedì:...
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: 13:43.


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