Click here to Skip to main content
15,880,503 members
Articles / Programming Languages / C#

An Asynchronous Socket Server and Client

Rate me:
Please Sign up or sign in to vote.
4.89/5 (265 votes)
29 Apr 2009CPOL16 min read 4M   25.6K   1.1K  
An asynchronous socket server and client with encryption and compression.
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using System.Net;

using ALAZ.SystemEx.NetEx;
using ALAZ.SystemEx.NetEx.SocketsEx;

namespace EchoFormClient
{

    public partial class frmEchoClient : EchoFormTemplate.frmEchoForm
    {

        private SocketClient FEchoClient;

        public frmEchoClient()
        {
            InitializeComponent();
        }

        private void cmdStart_Click(object sender, EventArgs e)
        {

            AddConnector();
            FEchoClient.Start();

            Event("Started!");
            Event("---------------------------------");

        }

        private void cmdStop_Click(object sender, EventArgs e)
        {
            
            FEchoClient.Stop();

            Event("Stopped!");
            Event("---------------------------------");

        }

        private void frmEchoClient_Load(object sender, EventArgs e)
        {

            FEchoClient = new SocketClient(CallbackThreadType.ctWorkerThread, new EchoSocketService.EchoSocketService(FEvent), DelimiterType.dtMessageTailExcludeOnReceive, Encoding.GetEncoding(1252).GetBytes("ALAZ"), 1024 * 2, 1024 * 16);

        }

        private void AddConnector()
        {

            for (int i = 1; i <= 50; i++)
            {
                FEchoClient.AddConnector(String.Empty, new IPEndPoint(IPAddress.Loopback, 8092), null, EncryptType.etNone, CompressionType.ctNone, new EchoCryptService.EchoCryptService());
            }
            
        }
    }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

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


Written By
Software Developer (Senior)
Brazil Brazil
- Living in São Paulo, Brazil
- Developing since 1994 with
* Clipper (Summer '87 and 5.02)
* FoxPro (DOS, 2.6), Visual Foxpro (6, 7, 8, 9)
* Delphi (1, 2, 5, 7, 2007)
* C# (2.0, 4.0)

Comments and Discussions