Find any possible sockets to connect to and return them
(path)
| 53 | |
| 54 | |
| 55 | def find_sockets(path): |
| 56 | """ Find any possible sockets to connect to and return them """ |
| 57 | return glob.glob(os.path.join(path, SOCKET_NAME + '*')) |
| 58 | |
| 59 | |
| 60 | def print_socket_options(prefix, paths): |