IdentifiantMot de passe
Loading...
Mot de passe oublié ?Je m'inscris ! (gratuit)
Navigation

Inscrivez-vous gratuitement
pour pouvoir participer, suivre les réponses en temps réel, voter pour les messages, poser vos propres questions et recevoir la newsletter

C# Discussion :

time out ca marche pas


Sujet :

C#

  1. #1
    Membre confirmé
    Profil pro
    Inscrit en
    Juillet 2006
    Messages
    98
    Détails du profil
    Informations personnelles :
    Âge : 39
    Localisation : Maroc

    Informations forums :
    Inscription : Juillet 2006
    Messages : 98
    Par défaut time out ca marche pas
    bonjour
    j'ai fait une petite application qui permet de pinguer sur différents équipement
    et j'ai fait au corps de mon application une instruction qui me renvoie le temps passé pour pinger comme suit:
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
     
                   dwStop = System.Environment.TickCount - dwStart; // stop timing
                        return "Reply from " + epServer.ToString() + " in "
                            + dwStop + "ms.  Received: " + nBytes + " Bytes.";
     
    				if(dwStop>100)
    				{
    					return "Time Out" ;
     
    				}
    le dwStop dépasse 100, et il me renvoie pas Time out
    merci de votre aide

  2. #2
    Membre émérite
    Profil pro
    Inscrit en
    Janvier 2007
    Messages
    547
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Janvier 2007
    Messages : 547
    Par défaut
    Salut,

    c'est normal, le premier return est inconditionnel, quoi que soit dwStop, le if ne sera jamais evalué. Mets le if au dessus, ou n'utilise qu'un seul return par fonction (souvent plus propre).

  3. #3
    Membre confirmé
    Profil pro
    Inscrit en
    Juillet 2006
    Messages
    98
    Détails du profil
    Informations personnelles :
    Âge : 39
    Localisation : Maroc

    Informations forums :
    Inscription : Juillet 2006
    Messages : 98
    Par défaut
    bonjour
    oui,t'as raison mais le premier return est conditionnel, c'est pas ici ou j'ai le probleme le deuxieme return ,j'ai deja dit que :le dwStop dépasse 100
    c'est le premier return qui m'informe de ca
    merci comme meme,merci à vous tous

  4. #4
    Membre émérite
    Avatar de neilbgr
    Homme Profil pro
    Développeur .NET
    Inscrit en
    Août 2004
    Messages
    651
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France

    Informations professionnelles :
    Activité : Développeur .NET
    Secteur : High Tech - Éditeur de logiciels

    Informations forums :
    Inscription : Août 2004
    Messages : 651
    Par défaut
    SirJulio a raison, relis-le au besoin...
    On est pas en Pascal (ou Delphi) et donc, un return "toto" équivaut à Result := 'toto'; Exit;
    Ainsi, oui, le compilateur doit te le dire en plus !, le code qui suit le premier return ne passera jamais.
    Connais-tu bien la syntaxe c# (en c++, c et java c'est la même chose) ?

  5. #5
    Membre confirmé
    Profil pro
    Inscrit en
    Juillet 2006
    Messages
    98
    Détails du profil
    Informations personnelles :
    Âge : 39
    Localisation : Maroc

    Informations forums :
    Inscription : Juillet 2006
    Messages : 98
    Par défaut
    voila une partie de code :
    j'ai dit que c'est pas ca le problème :
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    while(!recd)
    			{
    				nBytes = socket.ReceiveFrom(ReceiveBuffer, 256, 0, ref EndPointFrom);
    				if (nBytes == SOCKET_ERROR) 
    				{
    					return "Host not Responding" ;
     
     
    				}
    				else if(nBytes>0)
    				{
    					dwStop = System.Environment.TickCount - dwStart; // stop timing
                        return "Reply from " + epServer.ToString() + " in "
                            + dwStop + "ms.  Received: " + nBytes + " Bytes.";
     
     
    				}
    				timeout=System.Environment.TickCount - dwStart;
    				if(timeout>1000)
    				{
    					return "Time Out" ;
     
    				}
    			}

  6. #6
    Expert confirmé

    Avatar de Philippe Vialatte
    Homme Profil pro
    Architecte technique
    Inscrit en
    Juillet 2004
    Messages
    3 029
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 47
    Localisation : France, Alpes Maritimes (Provence Alpes Côte d'Azur)

    Informations professionnelles :
    Activité : Architecte technique
    Secteur : High Tech - Produits et services télécom et Internet

    Informations forums :
    Inscription : Juillet 2004
    Messages : 3 029
    Par défaut
    Salut,

    comment tu definis dwStart ?

    System.DateTime.Now.Ticks ?
    System.Environment.TickCount ?

    Si c'est le premier cas, je te conseille de mettre un breakpoint, et de comparer dwStart et System.Environment.TickCount, tu risque une surprise

    Mon Blog

    The Cake is still a lie !!!



    Vous voulez contribuer à la rubrique .NET ? Contactez-moi par MP.
    Vous voulez rédiger des articles pour la rubrique .NET ? Voici la procédure à suivre.

  7. #7
    Membre confirmé
    Profil pro
    Inscrit en
    Juillet 2006
    Messages
    98
    Détails du profil
    Informations personnelles :
    Âge : 39
    Localisation : Maroc

    Informations forums :
    Inscription : Juillet 2006
    Messages : 98
    Par défaut
    merci
    voila comment j'ai défini dwstart
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    dwStart = System.Environment.TickCount;
    just j'ai l'a fait au debut ,apres la creation de la packet ,si vous voulez voila le code entier
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    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
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
    83
    84
    85
    86
    87
    88
    89
    90
    91
    92
    93
    94
    95
    96
    97
    98
    99
    100
    101
    102
    103
    104
    105
    106
    107
    108
    109
    110
    111
    112
    113
    114
    115
    116
    117
    118
    119
    120
    121
    122
    123
    124
    125
    126
    127
    128
    129
    130
    131
    132
    133
    134
    135
    136
    137
    138
    139
    140
    141
    142
    143
    144
    145
    146
    147
    148
    149
    150
    151
    152
    153
    154
    155
    156
    157
    158
    159
    160
    161
    162
    163
    164
    165
    166
    167
    168
    169
    170
    171
    172
    173
    174
    175
    176
    177
    178
    179
    180
    181
    182
    183
    184
    185
    186
    187
    188
    189
    190
    191
    192
    193
    194
    195
    196
    197
    198
    199
    200
    201
    202
    203
    204
    205
    206
    207
    208
    209
    210
    211
    212
    213
    214
    215
    216
    217
    218
    219
    220
    221
    222
    223
    224
    225
    226
    227
    228
    229
    230
    231
    232
    233
    234
    235
    236
    237
    238
    239
    240
    241
    242
    243
    244
    245
    246
    247
    248
    249
    250
    251
    252
    253
    254
    255
    256
    257
    258
    259
    260
    261
    262
    263
    264
    265
    266
    267
     
    using System;
    using System.Text;
    using System.Windows.Forms;
     
     
    namespace Bejja
    {
    	using System;
    	using System.Net;
    	using System.Net.Sockets;
    	/// <summary>
    	///		The Main Ping Class
    	/// </summary>
    	public class Ping
    	{
    		//Declare some Constant Variables
    		const int SOCKET_ERROR = -1;        
    		const int ICMP_ECHO = 8;
    		/// <summary>
     
    		/// </summary>
     
    		/// <summary>
    		///		This public method takes the "hostname" of the server
    		///		and then it pings it and shows the response time
    		///		Data is returned as a string. IP addresses are resolved.
    		///		Example usage:
    		///		using Fiserv.CBS.Util
    		///		Ping p = new Ping();
    		///		textBox2.Text = p.PingHost(textBox1.Text);
    		/// </summary>
    		public   string PingHost(string host)
    		{
    			//Declare the IPHostEntry 
    			IPHostEntry serverHE, fromHE;
    			int nBytes = 0;
    			int dwStart = 0, dwStop = 0;
    			//Initialize a Socket of the Type ICMP
     
    			Socket socket = 
    				new Socket(AddressFamily.InterNetwork, SocketType.Raw, ProtocolType.Icmp);
    	         socket.SetSocketOption(SocketOptionLevel.Socket, SocketOptionName.SendTimeout, 1000);
    			// Get the server endpoint
    			try
    			{
    				serverHE = Dns.GetHostByName(host);	
    			}
    			catch(Exception)
    			{
     
    				  return "Host not found"; // fail ;
    			}
     
    			// Convert the server IP_EndPoint to an EndPoint
    			IPEndPoint ipepServer = new IPEndPoint(serverHE.AddressList[0], 0);
    			EndPoint epServer = (ipepServer);	
     
    			// Set the receiving endpoint to the client machine
    			fromHE = Dns.GetHostByName(Dns.GetHostName());
    			IPEndPoint ipEndPointFrom = new IPEndPoint(fromHE.AddressList[0], 0);        
    			EndPoint EndPointFrom = (ipEndPointFrom);
     
    			int PacketSize = 0;
    			IcmpPacket packet = new IcmpPacket();
    			// Construct the packet to send
    			packet.Type = ICMP_ECHO; //8
    			packet.SubCode = 0;
    			packet.CheckSum = UInt16.Parse("0");
    			packet.Identifier   = UInt16.Parse("45"); 
    			packet.SequenceNumber  = UInt16.Parse("0"); 
    			int PingData = 32; // sizeof(IcmpPacket) - 8;
    			packet.Data = new Byte[PingData];
    			//Initilize the Packet.Data
    			for (int i = 0; i < PingData; i++)
    			{
    				packet.Data[i] = (byte)'#';
    			}
     
    			//Variable to hold the total Packet size
    			PacketSize = PingData + 8;
    			Byte [] icmp_pkt_buffer = new Byte[ PacketSize ]; 
    			Int32 Index = 0;
    			//Call a Method Serialize which counts
    			//The total number of Bytes in the Packet
    			Index = Serialize(  
    				packet, 
    				icmp_pkt_buffer, 
    				PacketSize, 
    				PingData );
    			//Error in Packet Size
    			if( Index == -1 )
    			{
    				 return "Error Creating Packet";
     
    			}
     
    			// convert into a UInt16 array
     
    			//Get the Half size of the Packet
    			Double double_length = Convert.ToDouble(Index);
    			Double dtemp = Math.Ceiling( double_length / 2);
    			int cksum_buffer_length = Convert.ToInt32(dtemp);
    			//Create a Byte Array
    			UInt16 [] cksum_buffer = new UInt16[cksum_buffer_length];
    			//Code to initialize the Uint16 array 
    			int icmp_header_buffer_index = 0;
    			for( int i = 0; i < cksum_buffer_length; i++ ) 
    			{
    				cksum_buffer[i] = 
    					BitConverter.ToUInt16(icmp_pkt_buffer,icmp_header_buffer_index);
    				icmp_header_buffer_index += 2;
    			}
    			//Call a method which will return a checksum             
    			UInt16 u_cksum = checksum(cksum_buffer, cksum_buffer_length);
    			//Save the checksum to the Packet
    			packet.CheckSum  = u_cksum; 
     
    			// Now that we have the checksum, serialize the packet again
    			Byte [] sendbuf = new Byte[ PacketSize ]; 
    			//again check the packet size
    			Index = Serialize(  
    				packet, 
    				sendbuf, 
    				PacketSize, 
    				PingData );
    			//if there is a error report it
    			if( Index == -1 )
    			{
    				 return "Error Creating Packet";
     
    			}
     
     
    			dwStart = System.Environment.TickCount; // Start timing
    			//send the Packet over the socket
    			if ((nBytes = socket.SendTo(sendbuf, PacketSize, 0, epServer)) == SOCKET_ERROR) 
    			{		
    				 return "Socket Error: cannot send Packet";
    			}
    			// Initialize the buffers. The receive buffer is the size of the
    			// ICMP header plus the IP header (20 bytes)
    			Byte [] ReceiveBuffer = new Byte[256]; 
    			nBytes = 0;
    			//Receive the bytes
    			bool recd =false ;
    			int timeout=0 ;
     
    			//loop for checking the time of the server responding 
    			while(!recd)
    			{
    				nBytes = socket.ReceiveFrom(ReceiveBuffer, 256, 0, ref EndPointFrom);
    				if (nBytes == SOCKET_ERROR) 
    				{
    					return "Host not Responding" ;
     
     
    				}
    				else if(nBytes>0)
    				{
    					dwStop = System.Environment.TickCount - dwStart; // stop timing
                        return "Reply from " + epServer.ToString() + " in "
                            + dwStop + "ms.  Received: " + nBytes + " Bytes.";
     
     
    				}
    				timeout=System.Environment.TickCount - dwStart;
    				if(timeout>1000)
    				{
    					return "Time Out" ;
     
    				}
    			}
     
    			//close the socket
    			socket.Close(); 
    			return "";
    		}
    		/// <summary>
    		///  This method get the Packet and calculates the total size 
    		///  of the Pack by converting it to byte array
    		/// </summary>
    		public static Int32 Serialize(IcmpPacket packet, Byte[] Buffer,
    			Int32 PacketSize, Int32 PingData )
    		{
    			Int32 cbReturn = 0;
    			// serialize the struct into the array
    			int Index=0;
     
    			Byte [] b_type = new Byte[1];
    			b_type[0] = (packet.Type);
     
    			Byte [] b_code = new Byte[1];
    			b_code[0] = (packet.SubCode);
     
    			Byte [] b_cksum = BitConverter.GetBytes(packet.CheckSum);
    			Byte [] b_id = BitConverter.GetBytes(packet.Identifier);
    			Byte [] b_seq = BitConverter.GetBytes(packet.SequenceNumber);
     
    			// Console.WriteLine("Serialize type ");
    			Array.Copy( b_type, 0, Buffer, Index, b_type.Length );
    			Index += b_type.Length;
     
    			// Console.WriteLine("Serialize code ");
    			Array.Copy( b_code, 0, Buffer, Index, b_code.Length );
    			Index += b_code.Length;
     
    			// Console.WriteLine("Serialize cksum ");
    			Array.Copy( b_cksum, 0, Buffer, Index, b_cksum.Length );
    			Index += b_cksum.Length;
     
    			// Console.WriteLine("Serialize id ");
    			Array.Copy( b_id, 0, Buffer, Index, b_id.Length );
    			Index += b_id.Length;
     
    			Array.Copy( b_seq, 0, Buffer, Index, b_seq.Length );
    			Index += b_seq.Length;
     
    			// copy the data	        
    			Array.Copy( packet.Data, 0, Buffer, Index, PingData );
    			Index += PingData;
    			if( Index != PacketSize/* sizeof(IcmpPacket)  */) 
    			{
    				cbReturn = -1;
    				return cbReturn;
    			}
     
    			cbReturn = Index;
    			return cbReturn;
    		}
    		/// <summary>
    		///		This Method has the algorithm to make a checksum 
    		/// </summary>
    		public static UInt16 checksum( UInt16[] buffer, int size )
    		{
    			Int32 cksum = 0;
    			int counter;
    			counter = 0;
     
    			while ( size > 0 ) 
    			{
    				UInt16 val = buffer[counter];
     
    				cksum += Convert.ToInt32( buffer[counter] );
    				counter += 1;
    				size -= 1;
    			}
     
    			cksum = (cksum >> 16) + (cksum & 0xffff);
    			cksum += (cksum >> 16);
    			return (UInt16)(~cksum);
    		}
    	} // class ping
    	/// <summary>
    	///		Class that holds the Pack information
    	/// </summary>
    	public class IcmpPacket 
    	{ 
    		public Byte  Type;    // type of message
    		public Byte  SubCode;    // type of sub code
    		public UInt16 CheckSum;   // ones complement checksum of struct
    		public UInt16 Identifier;      // identifier
    		public UInt16 SequenceNumber;     // sequence number  
    		public Byte [] Data;
     
    	} // class IcmpPacket
    }
    merci beaucoup

  8. #8
    Expert confirmé

    Avatar de Philippe Vialatte
    Homme Profil pro
    Architecte technique
    Inscrit en
    Juillet 2004
    Messages
    3 029
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 47
    Localisation : France, Alpes Maritimes (Provence Alpes Côte d'Azur)

    Informations professionnelles :
    Activité : Architecte technique
    Secteur : High Tech - Produits et services télécom et Internet

    Informations forums :
    Inscription : Juillet 2004
    Messages : 3 029
    Par défaut
    hmmm...


    j'ai pas eu de pb avec ton code...

    genre, ca :
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    int dwStart = System.Environment.TickCount;
     
    int timeout= 0;
    while (true){
      timeout=System.Environment.TickCount - dwStart;
      if(timeout>1000)
        return ;
    }
    ca marche nickel...

    essaye de faire des debug.print(System.Environment.TickCount - dwStart), et de mettre un breakpoint sur

    Mon Blog

    The Cake is still a lie !!!



    Vous voulez contribuer à la rubrique .NET ? Contactez-moi par MP.
    Vous voulez rédiger des articles pour la rubrique .NET ? Voici la procédure à suivre.

  9. #9
    Membre confirmé
    Profil pro
    Inscrit en
    Juillet 2006
    Messages
    98
    Détails du profil
    Informations personnelles :
    Âge : 39
    Localisation : Maroc

    Informations forums :
    Inscription : Juillet 2006
    Messages : 98
    Par défaut
    merci à vous tous
    j'ai résolu le problème j'ai fait ça :
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    else if(nBytes>0)
    				{
    					dwStop = System.Environment.TickCount - dwStart; // stop timing
                        if (dwStop >9)
                        {
                            return "Time Out";
                        }
                        else
                        {
                            return "Reply from " + epServer.ToString() + " in "
                                + dwStop + "ms.  Received: " + nBytes + " Bytes.";
                        }
     
    				}
    merci beaucoup

+ Répondre à la discussion
Cette discussion est résolue.

Discussions similaires

  1. time.before ne marche pas
    Par subzero01 dans le forum Général Java
    Réponses: 12
    Dernier message: 19/02/2009, 11h35
  2. [VB.NET]Time out (Application ne répond pas)
    Par Pmatt dans le forum VB.NET
    Réponses: 8
    Dernier message: 15/06/2007, 17h26
  3. 'SHOW TABLES' marche pas sous postgresql !?
    Par fet dans le forum PostgreSQL
    Réponses: 4
    Dernier message: 13/05/2004, 09h28
  4. Réponses: 9
    Dernier message: 07/05/2003, 12h57
  5. Sysdate qui marche pas ??
    Par StouffR dans le forum Langage SQL
    Réponses: 4
    Dernier message: 28/08/2002, 13h23

Partager

Partager
  • Envoyer la discussion sur Viadeo
  • Envoyer la discussion sur Twitter
  • Envoyer la discussion sur Google
  • Envoyer la discussion sur Facebook
  • Envoyer la discussion sur Digg
  • Envoyer la discussion sur Delicious
  • Envoyer la discussion sur MySpace
  • Envoyer la discussion sur Yahoo