Searched refs:host (Results 51 - 66 of 66) sorted by relevance

123

/haiku/src/bin/network/telnetd/
H A Dutility.c359 edithost(char *pat, char *host) argument
369 if (*host)
370 host++;
374 if (*host)
375 *res++ = *host++;
388 if (*host)
389 (void) strncpy(res, host,
H A Dsys_term.c1038 * startslave(host)
1046 startslave(char *host, int autologin, char *autoname) argument
1066 start_login(host, autologin, autoname);
1085 * start_login(host)
1098 start_login(char *host undef1, int autologin undef1, char *name undef1)
1105 * -h : pass on name of host.
1118 * Don't add the "-h host" option if we are going
1119 * to be adding the "-r host" option down below...
1125 argv = addarg(argv, host);
1179 * If we passed in the real host nam
[all...]
H A Dtelnetd.c386 ; /* VOID*/ /* Just ignore the host/port name */
698 fatal(net, "Couldn't resolve your address into a host name.\r\n\
743 telnet(int f, int p, char *host) argument
951 startslave(host, level, user_name);
/haiku/src/kits/mail/
H A DMailMessage.cpp781 char host[255]; local
782 if (gethostname(host, sizeof(host)) < 0 || !host[0])
783 strcpy(host, "zoidberg");
785 messageID << host; local
H A DProtocolConfigView.cpp134 fHostControl = _AddTextControl(layout, "host",
185 BString host = settings.FindString("server"); local
187 host << ':' << settings.FindInt32("port");
190 fHostControl->SetText(host.String());
/haiku/src/tests/kits/net/service/
H A DUrlTest.cpp71 CPPUNIT_ASSERT_MESSAGE("Set to an invalid host", !url.IsValid());
168 const char* host; member in struct:__anon4::__anon5
182 { "http://user:pass@host:80/path?query#fragment",
183 { "http", "user", "pass", "host", 80, "/path", "query", "fragment" } },
184 { "http://www.host.tld/path?query#fragment",
185 { "http", "", "", "www.host.tld",0, "/path", "query", "fragment" } },
204 { "//remote.host/boot/home/Desktop",
205 { "", "", "", "remote.host", 0, "/boot/home/Desktop","",""} },
228 CPPUNIT_ASSERT_EQUAL(BString(kTestExplode[testIndex].expected.host),
264 {"http://host
[all...]
/haiku/src/preferences/notifications/
H A DGeneralView.cpp68 GeneralView::GeneralView(SettingsHost* host) argument
70 SettingsPane("general", host)
H A DNotificationsView.cpp70 NotificationsView::NotificationsView(SettingsHost* host) argument
72 SettingsPane("apps", host),
/haiku/src/kits/network/libnetservices2/
H A DHttpRequest.cpp484 BString host = fData->url.Host(); local
487 host << ':' << fData->url.Port();
490 {"Host"sv, std::string_view(host.String())}, {"Accept-Encoding"sv, "gzip"sv},
H A DHttpSession.cpp564 auto host = request.GetHost();
565 auto it = fConnectionCount.find(host);
572 "Request is queued: too many active connections for host");
588 auto [newIt, success] = fConnectionCount.insert({host, 1});
/haiku/headers/os/support/
H A DUrl.h31 BUrl& SetHost(const BString& host);
/haiku/src/kits/network/libnetservices/
H A DHttpRequest.cpp413 BString host = fUrl.Host(); local
420 host = fContext->GetProxyHost();
428 if (!_ResolveHostName(host, port)) {
928 // When there is a proxy, the request must include the host and port so
967 BString host = Url().Host(); local
969 host << ':' << Url().Port();
971 outputHeaders.AddHeader("Host", host);
/haiku/src/build/libroot/
H A Dfs_attr_untyped.cpp7 the host platform (xattr on Linux, extattr on FreeBSD).
41 // Include the interface to the host platform attributes support.
49 # error No attribute support for this host platform!
H A Dfs_attr_generic.cpp21 // Include the interface to the host platform attributes support, if it shall be
31 # error No attribute support for this host platform!
/haiku/src/kits/support/
H A DUrl.cpp265 BUrl::SetHost(const BString& host) argument
267 fHost = host;
525 // it is possible that there can be an authority but no host.
1059 // if we see the // then this would imply that a host is
1060 // to be rendered even if no host has been parsed.
1231 // if the host was preceded by a username + password couple
1245 // the host may be enclosed within brackets in order to express
1260 // if an IPV6 host was not found.
/haiku/
H A Dconfigure23 suitable for the host platform.
58 --host-only Configure for building tools for the build host
75 host system. The installed build tools for that
81 --use-clang <arch> Build with host Clang instead of GCC cross
87 --use-32bit Use -m32 flag on 64bit host gcc compiler.
102 CC The host compiler. Defaults to "gcc".
444 # Checks the host platform's support for extended attributes.
475 echo "$0: could not find $xattr_set, assuming host has no extended attributes"
478 echo "$0: could not find $xattr_get, assuming host ha
[all...]

Completed in 165 milliseconds

123