Results 1 to 2 of 2

Thread: [2003] Sending packets to a server

  1. #1

    Thread Starter
    Lively Member therat324's Avatar
    Join Date
    Oct 2008
    Location
    Bethany, Oklahoma
    Posts
    94

    [2003] Sending packets to a server

    What do I need to research to find out how to send packets from a client machine to a server?
    Last edited by therat324; Nov 11th, 2008 at 12:31 AM.
    My car if Chevy was VB.NET

    Code:
    Public Class MyCar
        Public Sub Camaro()
            Dim Camaro As Car
            Camaro = SS.Fast("Sexy")
        End Sub
    
        Public Function Fast(ByVal sexy As String ) As String
            Return "SUPER" & sexy
        End Function
    End Class

  2. #2
    Raging swede Atheist's Avatar
    Join Date
    Aug 2005
    Location
    Sweden
    Posts
    8,018

    Re: [2003] Sending packets to a server

    Computers uses sockets to send and receive data in a network. The .NET framework has implemented socket functionallity in the System.Net.Sockets.Socket class, and in the easier-to-use classes System.Net.Sockets.TcpClient and System.Net.Sockets.TcpListener if you're going for TCP and System.Net.Sockets.UdpClient if you're going for UDP.
    Rate posts that helped you. I do not reply to PM's with coding questions.
    How to Get Your Questions Answered
    Current project: tunaOS
    Me on.. BitBucket, Google Code, Github (pretty empty)

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width