search for: jid

Displaying 20 results from an estimated 203 matches for "jid".

Did you mean: id
2003 May 26
1
[patch] port-irix.c: refine jlimit support
...-irix.c.orig 2002-04-07 03:58:33.000000000 +0900 +++ openbsd-compat/port-irix.c 2003-05-27 02:11:07.620000380 +0900 @@ -7,6 +7,12 @@ #endif /* WITH_IRIX_PROJECT */ #ifdef WITH_IRIX_JOBS #include <sys/resource.h> +#include <optional_sym.h> +# if !defined(JLIMIT_CPU) +typedef __int64_t jid_t; +extern jid_t jlimit_startjob(char *, uid_t, char *); +# pragma optional jlimit_startjob +# endif #endif #ifdef WITH_IRIX_AUDIT #include <sat.h> @@ -27,10 +33,15 @@ #endif /* WITH_IRIX_JOBS */ #ifdef WITH_IRIX_JOBS - jid = jlimit_startjob(pw->pw_name, pw->pw_uid, &quot...
2002 Mar 07
1
Irix joblimits failure (was: Re: New snapshot)
...<proj.h> #endif /* WITH_IRIX_PROJECT */ #ifdef WITH_IRIX_JOBS -#include <sys/resource.h> -#endif +# include <sys/resource.h> +# include <optional_sym.h> +# if !defined(JLIMIT_CPU) +/* Simulate job limit support so we can still test for it at runtime. */ +typedef __int64_t jid_t; +extern jid_t jlimit_startjob(char *, uid_t, char *); +# pragma optional jlimit_startjob +# endif +#endif /* WITH_IRIX_JOBS */ #ifdef WITH_IRIX_AUDIT -#include <sat.h> +# include <sat.h> #endif /* WITH_IRIX_AUDIT */ void @@ -27,10 +34,16 @@ #endif /* WITH_IRIX_JOBS */ #ifde...
2012 Jun 20
1
getting name or uuid of vm within guest OS
Hi, for tl;dr people: how we can get uuid or name of a vm within a guest os? description: We are trying to implement a guest-agent for Archipel* to let us run simple commands on guest os**. in archipel each vm has its own jid (jabber id), user will open a chat conversation to vm's jid and send messages like "!exec ls", then we check that user (jid) who sent !exec has permission to run commands on our guest. if he/she had permission we will send a message to jid of guest-agent with message "ls", g...
2005 May 24
1
Jail support for mac_portacl(4).
...IP. In that way we know that if somebody breaks into out jail, he cannot run sshd server (we have keys, I know) or any other not-http service inside a jail with out public IP address. This patch gives another option, so one don't need to use firewall for this purpose. It adds new idtype - 'jid'. With this patch, one can configure that jail with the given JID can use only defined ports: # sysctl security.mac.portacl.rules="jid:1:tcp:80" Patch is here: http://people.freebsd.org/~pjd/patches/mac_portacl.c.patch Any objections? PS. With the above policy, processes from o...
2002 Feb 15
1
IRIX cleanup.
...JECT +#include <proj.h> +#endif /* WITH_IRIX_PROJECT */ +#ifdef WITH_IRIX_JOBS +#include <sys/resource.h> +#endif +#ifdef WITH_IRIX_AUDIT +#include <sat.h> +#endif /* WITH_IRIX_AUDIT */ + +void +irix_setusercontext(struct passwd *pw) +{ +#ifdef WITH_IRIX_PROJECT + prid_t projid; +#endif /* WITH_IRIX_PROJECT */ +#ifdef WITH_IRIX_JOBS + jid_t jid = 0; +#else +# ifdef WITH_IRIX_ARRAY + int jid = 0; +# endif /* WITH_IRIX_ARRAY */ +#endif /* WITH_IRIX_JOBS */ + +#ifdef WITH_IRIX_JOBS + jid = jlimit_startjob(pw->pw_name, pw->pw_uid, "interactive&...
2012 Apr 01
0
10.3.0: gtalk_request: No XMPP client to talk to, us (partial JID)
Trying to use gtalk: -- Executing [andy at ipkall:2] Dial("SIP/ipkall-00000000", "gtalk/andy-gtalk/+1xxxyyyzzzz at voice.google.com") in new stack [Apr 1 10:41:53] ERROR[2416]: chan_gtalk.c:1934 gtalk_request: No XMPP client to talk to, us (partial JID) : andy-gtalk gtalk.conf [general] context=google-in ; Context to dump call into allowguest=yes stunaddr = numb.viagenie.ca bindaddr=0.0.0.0 externip=aa.bb.cc.dd disallow=all allow=ulaw [andy-gtalk] username=<username>@gmail.com context=google-in connection=andy-jabber gtalk show settin...
2014 Mar 18
0
XMPP issues in Asterisk 11.6.0 for distributed device states...
...t;--- XMPP sent to 'asterisk' ---> <iq to='pubsub.xmpp' from='server3 at xmpp/astvoip3' type='set' id='aaacz'> <pubsub xmlns='http://jabber.org/protocol/pubsub#owner'> <affiliations node='test'> <affiliation jid='server1 at xmpp' affiliation='owner'/> <affiliation jid='server2 at xmpp' affiliation='owner'/> <affiliation jid='server1 at xmpp/astvoip1' affiliation='owner'/> <affiliation jid='server2 at xmpp/astvoip2'...
2009 Dec 24
0
can't return array object from worker
...set_worker_name :chat_worker def create(args = nil) # this method is called, when worker is loaded for the first time logger.info ''Initializing Chat Worker.......'' end def connect_chat(args) logger.info "Conencting chat.......#{args[:username]} --" jid = Jabber::JID.new(args[:username]) @client = Jabber::Client.new(jid) @client.connect @client.auth(args[:password]) @client.send(Jabber::Presence.new.set_show(nil).set_status(''From Rails!'')) logger.info "Chat Connection status - #{@client.is_connected?}&quo...
2000 Nov 10
0
Irix job limits patch
...13:20:03 2000 @@ -55,6 +55,9 @@ #ifdef WITH_IRIX_PROJECT #include <proj.h> #endif /* WITH_IRIX_PROJECT */ +#ifdef WITH_IRIX_JOBS +#include <sys/resource.h> +#endif #if defined(HAVE_USERSEC_H) #include <usersec.h> @@ -1014,6 +1017,14 @@ #ifdef WITH_IRIX_PROJECT prid_t projid; #endif /* WITH_IRIX_PROJECT */ +#ifdef WITH_IRIX_JOBS + jid_t jid = 0; +#else +#ifdef WITH_IRIX_ARRAY + int jid = 0; +#endif /* WITH_IRIX_ARRAY */ +#endif /* WITH_IRIX_JOBS */ + /* login(1) is only called if we execute the login shell */ if (options.use_login && command != NULL) @@...
2004 Aug 06
2
header question
hi, a simple question which i can't answer through the manuals ... is the header always 80 bytes long? thanks in advance, ulrich -- Ulrich B. Staudinger http://www.die-horde.de email: us@die-horde.de jid: uls@jabber.org current project: REDHORN http://redhorn.sourceforge.net Blog: uls@jabber.org">http://jabber.linux.it/jogger/user.php?jid=uls@jabber.org</a> <p>--- >8 ---- List archives: http://www.xiph.org/archives/ Ogg project homepage: http://www.xiph.org/ogg/ To unsubs...
2004 Aug 06
3
q about jspeex - repost of TestClient.java with PipedInputStream
There is actually a mail missing - the version with the pipedinputstream construction. attached the current source with pipedinputstream/pipedoutputstream tia, ulrich <p><p> -------------- next part -------------- A non-text attachment was scrubbed... Name: TestClient.java Type: text/x-java Size: 14939 bytes Desc: TestClient.java Url :
2006 Jun 08
0
rq-2.3.3
...- [IMPORTANT] removed feature where stdin jobs could contain comments (''#''). input lines are now taken literally __except__ blank lines, which are still ignored. - added ability to dump stdin/stdout/stderr for any job rq q stdout 42 cat jids | rq q stdout - - added ability to dump stdin/stdout/stderr pathnames for any job rq q stdout4 42 cat jids | rq q stderr4 - - rotate was made more robust and tolerates nfs errors to some degree NAME rq v2.3.3 SYNOPSIS rq (queue | export RQ_Q=q) mode [mode_arg...
2004 Aug 06
2
header question
...k to open the audio output line straight away by implementing another class based on PcmWaveWriter .... that way i don't have to split header from content ... do you have some hints? thanks for replying so fast ulrich -- Ulrich B. Staudinger http://www.die-horde.de email: us@die-horde.de jid: uls@jabber.org current project: REDHORN http://redhorn.sourceforge.net Blog: uls@jabber.org">http://jabber.linux.it/jogger/user.php?jid=uls@jabber.org</a> <p>--- >8 ---- List archives: http://www.xiph.org/archives/ Ogg project homepage: http://www.xiph.org/ogg/ To unsubs...
2011 May 05
2
Problem after restarting libvirt
After restarting libvirt cgroups for VMs are not recovered. Is there available to restore cgroup state after restart? -- Nikita A Menkovich http://libc6.org/ JID: menkovich at gmail.com Tel: +7 (921) 423-96-48
2009 Jan 26
0
XMPP4R and Openfire
My app sends IM with XMPP4R with Jabber accounts perfectly with this code, but when I want to use an Openfire problem I get an error of authorization jid = Jabber::JID.new(''myuser-hcDgGtZH8xNBDgjK7y7TUQ@public.gmane.org'') @client = Jabber::Client.new(jid) @client.connect @client.auth(''xxxxxx'') The error: /Library/Ruby/Gems/1.8/gems/xmpp4r-0.4/lib/xmpp4r/client.rb:116:in `auth'': not-authorize...
2010 Apr 01
0
Request format from jabber simple to openfire server
...9;' require ''xmpp4r/bytestreams'' require ''xmpp4r/roster/helper/roster'' require ''xmpp4r/roster/iq/roster'' require ''xmpp4r/vcard'' require ''xmpp4r-simple'' include Jabber Jabber::debug = true jid = Jabber::JID::new("mygmailid") client = Jabber::Client::new(jid) client.connect client.auth("gmailpassword") Now i want to know how to use the above piece of code to send request to openfire server. by default the request sent using above code goes to port "5222&q...
2009 Feb 03
1
What's the difference between the Jabber Client Mode And Component Mode?
Hi All, I am doing some research on the intergration of Jabber and Asterisk. I have tried Jabber Client Mode. It's cool and works fine. But there's few information on the Component Mode. What's the difference between these two mode? I finished the configuration on jabber.conf and I am using openfire. What shall I do in the openfire to make them intergrated? Looks forward to your
2005 Oct 16
13
More than one parameter with link_to_remote
...am=my_extra'' (32 is @my_object''s id) but params[:extra_param] contains ''my_extra?''. Why that extra question mark? I think I''m missing something. Any idea? Thank you in advance. -- _o) Imobach González Sosa //\ email: imobachgs at step dot es V_/_ jid: osoh at jabberes dot org url: http://www.banot.net/~osoh/ blog: http://devnull.blogs.banot.net -- Este mensaje ha sido analizado por STEP On Line en busca de virus y otros contenidos peligrosos, y se considera que está limpio. 902 10 18 43
2007 Feb 03
2
Google Talk without gmail accout?
...ok event. JABBER: gtalk_account INCOMING: <stream:error><host-unknown xmlns="urn:ietf:params:xml:ns:xmpp-streams"/><str:text xmlns:str="urn:ietf:params:xml:ns:xmpp-streams">Set the 'to' attribute of stream element to the domain part of the user's JID. Example: to='gmail.com'.</str:text></stream:error></stream:stream> So does this only work if you have email accounts from gmail.com? Thanks Ian.
2009 Feb 13
5
GFS + Restarting iptables
...ter_nodeid -1 prev -1 1234541737 setan start_participant_init 1234541737 setan send_options len 1296 "rw" 1234541737 setan start_done 3 1234541737 setan receive_options from 3 len 1296 last_cb 2 1234541737 setan receive_journals from 1 to 3 len 320 count 4 cb 2 1234541737 receive nodeid 1 jid 1 opts 1 1234541737 receive nodeid 2 jid 2 opts 1 1234541737 receive nodeid 3 jid 3 opts 1 1234541737 receive nodeid 4 jid 0 opts 1 1234541737 setan received_our_jid 3 1234541737 setan retrieve_plocks 1234541737 notify_mount_client: nodir not found for lockspace setan 1234541737 notify_mount_client...