Home | History | Annotate | Download | only in openssh

Lines Matching refs:service

185 	char *service = packet_get_cstring(&len);
191 if (strcmp(service, "ssh-userauth") == 0) {
198 /* XXX all other service requests are denied */
202 packet_put_cstring(service);
206 debug("bad service request %s", service);
207 packet_disconnect("bad service request %s", service);
209 xfree(service);
218 char *user, *service, *method, *style = NULL;
225 service = packet_get_cstring(NULL);
227 debug("userauth-request for user %s service %s method %s", user, service, method);
237 if (authctxt->pw && strcmp(service, "ssh-connection")==0) {
253 authctxt->service = xstrdup(service);
256 mm_inform_authserv(service, style);
259 strcmp(service, authctxt->service) != 0) {
260 packet_disconnect("Change of username or service not allowed: "
262 authctxt->user, authctxt->service, user, service);
287 xfree(service);