예제 #1
0
        public OscUdpClient(OscEndpoint endpoint, bool connect) {
            this.Endpoint = endpoint;
            this.socket = new Socket(AddressFamily.InterNetwork, SocketType.Dgram, ProtocolType.Udp);

            if (connect) {
                Connect();
            }
        }
예제 #2
0
        public OscUdpServer(OscEndpoint endpoint) {
            this.Endpoint = endpoint;
            this.socket = new Socket(AddressFamily.InterNetwork, SocketType.Dgram, ProtocolType.Udp);

            socket.Bind(
                this.Endpoint.CreateIpEndpoint()
                );
        }
예제 #3
0
        public OscUdpClient(OscEndpoint endpoint)
            : this(endpoint, false)
        {

        }