0
votes
1answer
17 views

Socket API on top of SCSI?

Is there any existing software available that does the usual socket API over different transports? I am particularly interested in SCSI now, but knowing if there is something available for other ...
0
votes
1answer
45 views

How many tuples are there in a connection?

Some people said that there are 4 tuples in a connection client IP address, client port number, server IP address, server port number Some said that there are 5 client IP address, client port ...
1
vote
2answers
98 views

linux c sockets

good evening, I am a newbie in using linux sockets under the c programming language. for now I'm trying to make a client communicate with a server. basically the thing i'm stuck at is making the ...
1
vote
2answers
67 views

TCP Server receiving from client doesn't work sometimes

I'm working on a server written in Python for my own protocol, but I'm having an issue. The client connects to the server, and sendall()'s three pieces of data: a packet identification byte, a string ...
2
votes
2answers
65 views

How could I identify multiple commands for network application (Java)

I want to build a client-server-application for some practice. I started off with a simple chat which was not so hard to do. I'm also able to identify different commands by just simply split a String, ...
0
votes
1answer
252 views

Ruby TCPSocket Send/Receive binary data -> array hash etc

I'm trying to create a custom game server protocol in Ruby but i'm failing to understand how i can/should do a couple things: Q->1# Server sends an array to client using TCPServer/TCPSocket. but i ...
0
votes
1answer
79 views

Multiplexing data over socket

Basically I'm trying to have 2 - 3 file transfers from the same socket BUT all of them at the same time and yet not to interrupt messages sent back and to client/server. Similar to a chat program ...
0
votes
2answers
183 views

Protocols for communicating over web sockets

I'm working on the client-side of a project with a large and complex server-side component. The client will be deployed as an mobile app among other contexts. For client-server communication, there ...
0
votes
1answer
70 views

Good Protocol Practice/Template for sockets?

Right, I'm looking for some more advanced flexible protocols to implement to my sockets. I'll be transferring data, video, audio and text through the single same TCP socket. The current protocol I'm ...
1
vote
1answer
176 views

Data Transfer Protocol Design

I am writing a protocol to transfer GBs of data over the network to try to teach myself a little bit about programming on protocols. I will be using TCP. Now, I am concerned about how should I design ...
0
votes
0answers
79 views

Building a solid (workable) Application protocol in java [closed]

Ive been trying for the past 1 and a half week to build a very simple chat program. i have seperated the program into two parts a server and a client (which makes sence). i know what i have to do and ...
0
votes
1answer
51 views

How to set the socket type and the protocol of a socket using create_connection in python?

I want to use socket.create_connection() to set a source address in a ping implementation in python. But how can I then set the type and the protocol? Because, before, I did: icmp = ...
2
votes
1answer
321 views

Communicating with a socket using MAC address from Embedded FPGA

I have a small FPGA that needs to communicate with a C program running on a Ubuntu Machine via ethernet. The FPGA is too small to use TCP etc. I can send frames and pick them up in wireshark using ...
0
votes
1answer
558 views

One Socket Multiple Threads

I'm coding a part of little complex communication protocol to control multiple medical devices from single computer terminal. Computer terminal need to manage about 20 such devices. Every device uses ...
0
votes
1answer
718 views

C# TCP Server buffer

I have been trying to get this to work for a while and I even searched through most of the forum but I've got nothing so far. My Issue: Process_send works perfectly in that my client can receive ...
0
votes
2answers
623 views

Client Server File Transfer Java

I am trying to write an application using Java that will allow me to transfer files between a server and a client that requests the file. I plan to do it using sockets. My algorithm is somewhat like ...
0
votes
1answer
223 views

Which network protocol to use to sync resources between a server a several clients

I am building a professional iOS application where an iPad is a server and several iPhones are clients. Considering the fact that : - communications operate only on a local network via sockets using ...
0
votes
1answer
362 views

Java Socket Server Not Receiving Messages?

Alright, so I'm not sure if there really is an error or not. I've created a listening server using Java and NetBeans, and am trying to get the protocol to work. However, for some reason it doesn't ...
2
votes
1answer
2k views

Sending Login Packet to Minecraft Server in Python Not Working

I have the following script in Python. What it does is tries to connect to a MineCraft server, first by sending a 'handshake', then sending a login request. The protocol specs can be found here: ...
2
votes
1answer
97 views

HTTP Protocol: How does one figure out where a site's homepage is located

I can't be the only person to have ever wondered this, but I couldn't find the question answered anywhere else on the site. I've successfully requested specific files from sites by sending HTTP ...
0
votes
2answers
637 views

Error Fragmented IP Protocol

I am making application in c#.In that application i want to broadcast some data using UDP protocol.I am making socket as IPEndPoint ipep = new IPEndPoint(IPAddress.Broadcast, ...
1
vote
1answer
155 views

Is it possible to use http scheme with desired port say 6500 instead of ws and wss scheme in WebSockets?

I would like to know, if there is any way possible to use http:// scheme instead of ws:// or wss:// schemes for Websockets in HTML5, if not then why not? What are the various ways to declare ...
1
vote
0answers
203 views

Java Socks5 implementation

I need to add the Socks5 protocol to a finished HTTP client/server which uses non-blocking sockets with Selector. I was thinking of creating own classes with the following parents: SocketChannel, ...
1
vote
2answers
694 views

Strange Linux socket protocols behaviour

I'm a little confused about the difference between the definitions of protocols on Linux when using socket(). I am attempting to listen for connections over TCP using socket(PF_INET, SOCK_STREAM, ...
0
votes
1answer
737 views

Getting started on FIX protocol with PHP sockets

I have pretty basic knowledge of PHP sockets and the FIX protocol altogether. I have an account that allows me to connect to a server and retrieve currency prices. I adapted this code to connect and ...
1
vote
2answers
166 views

how to implement a protocol adapter

I want to implement a adapter which can provide a universal interface to clients to use socket, opc, message queue, etc. In other words, it is a non-trivial job to learn to use the three above ...
0
votes
2answers
891 views

Strange thing - SOCK_DGRAM and SOCK_STREAM?

I just came across this strange thing I got to see application is that by default they use SOCK_STREAM function. Why is it so? is this SOCK_STREAM just creating multiple streams ? or is it the ...
0
votes
2answers
765 views

RETR command in FTP, how does the server send a file to the client?

I'm implementing a very simple FTP server program that is able to retrieve and store text files. my question is, when a ftp client request say a file with the following "RETR test.txt" how does the ...
0
votes
1answer
43 views

Socket protocol specification for transferring keystrokes?

Is there an existing socket protocol for defining how a way to transfer keystroke data across machines? I want to be able to type on one machine and have what I type there show up on another machine. ...
4
votes
2answers
197 views

What is the explanation for the states and inner workings of TCP?

Could anyone recommend a useful resource for a reasonably in-depth discussion of the motivation for different elements of TCP protocol? I can find plenty of information about what the protocol ...
0
votes
2answers
163 views

Talking to a network device

I have a device on my network that I need to get data out of using C#. I know I have to use sockets within C# but does anyone know of any program that lets me trial sending and receiving data from ...
0
votes
3answers
193 views

What should a socket-based protocol look like for a C daemon?

I am writing a C daemon which my web application will use as a proxy to communicate with FTP servers. My web application enables users to connect and interact with FTP sites via AJAX. The reason I ...
0
votes
1answer
79 views

Does BeginSendTo prefix a message with a 4 Byte integer of the size?

I inherited a project that includes a dialog between two applications. One in native C++ the other in VB.NET. The protocol is such that the first 4 bytes (32 bits) of the message encodes the size. ...
1
vote
2answers
1k views

HTTP header 'Connection: Close' not sent by IE

I have a custom HTTP server that implements the HTTP 1.1 protocol. I have no problem using persistent connections, however, I never receive 'Connection: Close' from IE ( I haven't tested other ...
0
votes
2answers
72 views

Is there an easy to implement or existing protocol to pass an object with pipe/socket in windows?

The object is essentially BYTEs of dynamic length. What's the easiest way to implement a send/receive mechanism? I got a tip follows but have no idea how to roll this protocol myself: Just ...
6
votes
4answers
1k views

Tips about design/implementation of own protocol

Where I work we are in need of a protocol capable of: User login/logout Send/recive instructions Send/recive files Send/recive audio stream(could use RTP) Send/recive small XML files Use ...
1
vote
2answers
482 views

Communication protocols in UDP

After many hours, I have discovered that the given udp server needs the following steps for a successful communication: 1- Send "Start Message" on a given port 2- Wait to receive from server on any ...
3
votes
4answers
506 views

Python Sockets - Creating a message format

I have built a Python server to which various clients can connect, and I need to set a predefined series of messages from clients to the server - For example the client passes in a name to the server ...
0
votes
2answers
2k views

Create binary data using Ruby?

i was palying with the ruby sockets, so i ended up trying to put an IP packet togather, then i took an ip packet and try to make a new one just like it. now my problem is: if the packet is: 45 00 00 ...