Searched refs:remote (Results 1 - 25 of 198) sorted by relevance

12345678

/macosx-10.10/llvmCore-3425.0.34/utils/bugpoint/
H A DRemoteRunSafely.sh15 # <hostname> is the remote host to execute the program,
16 # <login_name> is the username on the remote host,
17 # <port> is the port used by the remote client,
93 remote="./"$PROGRAM
97 'rm -f '$remote' ; ' \
98 'cat > '$remote' ; chmod +x '$remote' ; '$remote' '$*' ; ' \
99 'err=$? ; rm -f '$remote' ; exit $err'
/macosx-10.10/remote_cmds-47/talk.tproj/
H A Dget_iface.c48 * packet to a remote peer.
57 struct sockaddr_in remote; local
61 memcpy(&remote.sin_addr, dst, sizeof remote.sin_addr);
62 remote.sin_port = htons(60000);
63 remote.sin_family = AF_INET;
64 remote.sin_len = sizeof remote;
86 rv = connect(s, (struct sockaddr *)&remote, sizeof remote);
[all...]
/macosx-10.10/man-16/man/man2html/
H A Dhman.sh29 # If the man pages are on a remote host, specify it in MANHTMLHOST.
47 if [ -x netscape-remote ] ; then
48 exec netscape-remote -remote "openURL($1,new_window)"
50 exec netscape -remote "openURL($1,new_window)"
/macosx-10.10/ruby-106/ruby/test/rubygems/
H A Dtest_gem_commands_search_command.rb13 assert_equal :remote, @cmd.defaults[:domain]
/macosx-10.10/postfix-255/postfix/src/anvil/
H A Danvil.c146 /* from many remote clients. To reduce memory usage, reduce
164 /* process can have only one remote client at a time. If a
279 static HTABLE *anvil_remote_map; /* indexed by service+ remote client */
296 * us to clean up remote connection state when a local server goes away
313 #define ANVIL_REMOTE_FIRST_CONN(remote, id) \
315 (remote)->ident = mystrdup(id); \
316 (remote)->count = 1; \
317 (remote)->rate = 1; \
318 (remote)->mail = 0; \
319 (remote)
[all...]
/macosx-10.10/llvmCore-3425.0.34/utils/
H A DGetRepositoryPath22 git remote -v | grep 'fetch' | awk '{ print $2 }'
/macosx-10.10/apache-793/httpd/modules/metadata/
H A Dmod_remoteip.c56 /** The list of proxy IP's ignored as remote IP's */
58 /** The remaining list of untrusted proxied remote IP's */
228 char *remote; local
239 remote = (char *) apr_table_get(r->headers_in, config->header_name);
240 if (!remote) {
243 remote = apr_pstrdup(r->pool, remote);
247 while (remote) {
266 if ((parse_remote = strrchr(remote, ',')) == NULL) {
267 parse_remote = remote;
[all...]
/macosx-10.10/ipsec-286.1.1/ipsec-tools/racoon/
H A Dremoteconf.c89 * search remote configuration.
94 * Other: remote configuration entry.
97 getrmconf_strict(remote, allow_anon)
98 struct sockaddr_storage *remote;
115 * We never have ports set in our remote configurations, but when
120 * In an ideal world, we would be able to have remote conf with
123 switch (remote->ss_family) {
125 if (((struct sockaddr_in *)remote)->sin_port != IPSEC_PORT_ANY)
130 if (((struct sockaddr_in6 *)remote)->sin6_port != IPSEC_PORT_ANY)
139 "invalid ip address family: %d\n", remote
310 copyrmconf(struct sockaddr_storage *remote) argument
[all...]
H A Dhandler.c170 * search for isakmpsa handler by source and remote address.
175 ike_session_getph1byaddr(ike_session_t *session, struct sockaddr_storage *local, struct sockaddr_storage *remote) argument
181 plog(ASL_LEVEL_DEBUG, "remote: %s\n", saddr2str((struct sockaddr *)remote));
187 plog(ASL_LEVEL_DEBUG, "p->remote: %s\n", saddr2str((struct sockaddr *)p->remote));
189 && CMPSADDR(remote, p->remote) == 0){
201 sgetph1byaddrwop(ike_session_t *session, struct sockaddr_storage *local, struct sockaddr_storage *remote) argument
209 && cmpsaddrwop(remote,
217 ike_session_getph1byaddrwop(ike_session_t *session, struct sockaddr_storage *local, struct sockaddr_storage *remote) argument
239 sike_session_getph1bydstaddrwop(ike_session_t *session, struct sockaddr_storage *remote) argument
254 ike_session_getph1bydstaddrwop(ike_session_t *session, struct sockaddr_storage *remote) argument
1343 ike_session_purgephXbydstaddrwop(struct sockaddr_storage *remote) argument
1434 ike_session_ph1_force_dpd(struct sockaddr_storage *remote) argument
[all...]
H A Dike_session.c129 saddr2str((struct sockaddr *)&session->session_id.remote));
172 plog(ASL_LEVEL_DEBUG, "New IKE Session to %s.\n", saddr2str((struct sockaddr *)&session_id->remote));
194 struct sockaddr_storage *remote,
207 if (!local || !remote) {
212 remote_port = extract_port(remote);
238 if (remote->ss_family == AF_INET) {
239 memcpy(&id.remote, remote, sizeof(struct sockaddr_in));
240 memcpy(&id_default.remote, remote, sizeo
193 ike_session_get_session(struct sockaddr_storage *local, struct sockaddr_storage *remote, int alloc_if_absent, isakmp_index *optionalIndex) argument
484 struct sockaddr_storage *remote; local
745 struct sockaddr_storage *local, *remote; local
914 char *local, *remote, *index; local
966 char *local, *remote; local
1126 ike_sessions_stopped_by_controller(struct sockaddr_storage *remote, int withport, const char *reason) argument
1177 struct sockaddr_storage *remote; local
1975 ike_session_assert(struct sockaddr_storage *local, struct sockaddr_storage *remote) argument
[all...]
/macosx-10.10/BerkeleyDB-21/db/docs_src/ref/env/
H A DMakefile4 intro.html naming.html open.html region.html remote.html \
/macosx-10.10/ruby-106/ruby/lib/rubygems/commands/
H A Dsearch_command.rb11 defaults[:domain] = :remote
19 "--remote --no-details"
H A Dhelp_command.rb9 * Install 'rake', either from local directory or remote server:
13 * Install 'rake', only from remote server:
15 gem install rake --remote
26 * List local and remote gems whose name contains 'log':
30 * List only remote gems whose name contains 'log':
32 gem search log --remote
/macosx-10.10/uucp-11/configs/
H A Dsys22 # local-send, local-receive, remote-send, remote-receive
32 # Example: allows users on the local host to request any files below root from a remote system.
34 remote-send /
44 # Example: allow users on the local host to upload files into /var/spool/uucp_pubdir on a remote system.
45 # An administrator must create this as a world-writable directory on the remote system.
46 # Beware: Creating world-writable directories will make the remote system less secure.
48 remote-receive /var/spool/uucp_pubdir
57 # Example: List the commands a remote system may execute locally.
83 # Example: identify a remote system
[all...]
/macosx-10.10/WebCore-7600.1.25/dom/default/
H A DPlatformMessagePortChannel.cpp73 // We can't call member functions on our remote pair while holding our mutex or we'll deadlock,
74 // but we need to guard against the remote port getting closed/freed, so create a standalone reference.
75 RefPtr<PlatformMessagePortChannel> remote = m_channel->entangledChannel(); local
76 if (!remote)
78 remote->setRemotePort(port);
84 RefPtr<PlatformMessagePortChannel> remote = m_channel->entangledChannel(); local
85 if (remote)
86 remote->setRemotePort(0);
114 RefPtr<PlatformMessagePortChannel> remote = m_channel->entangledChannel(); local
115 if (!remote)
[all...]
/macosx-10.10/Heimdal-398.1.2/appl/telnet/libtelnet/
H A Dmisc.c56 auth_encrypt_init(const char *local, const char *remote, const char *name, argument
59 RemoteHostName = remote;
/macosx-10.10/OpenSSH-189/openssh/regress/
H A Ddynamic-forward.sh53 remote=`cat $OBJ/remote_pid`
54 trace "terminate remote shell, pid $remote"
55 if [ $remote -gt 1 ]; then
56 kill -HUP $remote
/macosx-10.10/WebCore-7600.1.25/Modules/mediastream/
H A DRTCStatsReport.idl37 readonly attribute RTCStatsReport remote;
/macosx-10.10/libtelnet-13/
H A Dmisc.c74 auth_encrypt_init(char *local, char *remote, const char *name undef1, int server undef1) argument
76 RemoteHostName = remote;
/macosx-10.10/ruby-106/ruby/ext/socket/
H A Dipsocket.c19 } remote, local; member in struct:inetsock_arg
27 if (arg->remote.res) {
28 freeaddrinfo(arg->remote.res);
29 arg->remote.res = 0;
49 arg->remote.res = rsock_addrinfo(arg->remote.host, arg->remote.serv, SOCK_STREAM,
60 for (res = arg->remote.res; res; res = res->ai_next) {
125 arg.remote.host = remote_host;
126 arg.remote
[all...]
/macosx-10.10/Heimdal-398.1.2/appl/test/
H A Duu_client.c42 struct sockaddr_in remote, local; local
60 addrlen = sizeof(remote);
61 if (getpeername (sock, (struct sockaddr *)&remote, &addrlen) < 0
62 || addrlen != sizeof(remote))
82 remote_addr.address.length = sizeof(remote.sin_addr);
83 remote_addr.address.data = &remote.sin_addr;
H A Duu_server.c42 struct sockaddr_in remote, local; local
58 addrlen = sizeof(remote);
59 if (getpeername (sock, (struct sockaddr *)&remote, &addrlen) < 0
60 || addrlen != sizeof(remote))
72 remote_addr.address.length = sizeof(remote.sin_addr);
73 remote_addr.address.data = &remote.sin_addr;
/macosx-10.10/WebCore-7600.1.25/platform/mediastream/
H A DMediaStreamSource.h96 virtual bool remote() const { return m_remote; } function in class:WebCore::MediaStreamSource
97 virtual void setRemote(bool remote) { m_remote = remote; } argument
/macosx-10.10/ruby-106/ruby/lib/rubygems/
H A Dlocal_remote_options.rb11 # Mixin methods for local and remote Gem::Command options.
35 # Add local/remote options to the command line parser.
43 add_option(:"Local/Remote", '-r', '--remote',
45 options[:domain] = :remote
91 'Use HTTP proxy for remote operations') do |value, options|
104 'Add URL as a remote source for gems') do |source, options|
127 # Is fetching of local and remote information enabled?
141 # Is remote fetching enabled?
143 def remote?
144 options[:domain] == :remote || option
[all...]
/macosx-10.10/xnu-2782.1.97/bsd/net/
H A Dkext_net.h61 const struct sockaddr *remote);
63 extern int sflt_getpeername(struct socket *so, struct sockaddr **remote);
65 const struct sockaddr *remote);

Completed in 398 milliseconds

12345678