简体   繁体   中英

Is it possible to Create a Named Pipe on a remote machine (by IP address)?

是否可以在远程计算机上(通过IP地址)创建命名管道?

No, you can't reference a host by IP address. For completeness: remote hosts are generally possible, you just have to reference the machine by its name. The pipe name is constructed as follows:

\\ServerName\pipe\PipeName

See MSDN on Pipe Names for further reading.

AFAIK Pipes in windows are not referenced by IP address.

You can create a named pipe for inter-process communication, or, create a winsock TCP socket - which is less popular on windows.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM