Skip to content
Snippets Groups Projects
Commit b25cd007 authored by rswindell's avatar rswindell
Browse files

Create UDP socket if "udp" specified on command-line.

parent 5f3f4fbf
No related branches found
No related tags found
No related merge requests found
......@@ -6,7 +6,7 @@ var socket;
if(this.client)
socket=client.socket;
else
socket=new Socket(SOCK_STREAM,"test");
socket=new Socket(argv[0]=="udp" ? SOCK_DGRAM : SOCK_STREAM,"test");
var option_list;
if(socket.option_list)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment