Hey with MASM could i use the OUTS command to send data instead of using sockets.
Short answer: Yes
Long answer: That pushes towards kernel-mode driver development, as I/O ports are protected in order to curb the free-reign of malicious software.
Long answer: That pushes towards kernel-mode driver development, as I/O ports are protected in order to curb the free-reign of malicious software.
But if i use OUTS the reciever will probably get the data in the wrong order though seing how it just sends it out.
So would it be better using a streaming socket
So would it be better using a streaming socket
But if i use OUTS the reciever will probably get the data in the wrong order though seing how it just sends it out.
So would it be better using a streaming socket
You are over-simplifying the whole process. Stick to streaming sockets, as you don't want to dive into using direct I/O port access without major study/design/coding.