Displaying 5 results from an estimated 5 matches for "token2".
Did you mean:
token
2005 Aug 04
0
[PATCH 6/11] Xenstore watch rework
...39;'watch /dir token
+1 write /dir/test create contents
read /dir/test
waitwatch
ackwatch token'' | ./xs_test 2>&1`" = "contents
/dir/test:token" ]
-# watch priority /test.
-[ "`echo -e ''1 watch /dir token1 1
-3 watch /dir token3 3
-2 watch /dir token2 2
+# watch priority test: all simultaneous
+[ "`echo -e ''1 watch /dir token1
+3 watch /dir token3
+2 watch /dir token2
write /dir/test create contents
3 waitwatch
3 ackwatch token3
@@ -52,8 +57,8 @@
1:/dir/test:token1" ]
# If one dies (without acking), the other should sti...
2011 Apr 16
3
calling dovecot exported auth from Java
As far as I have been able to figure out, dovecot auth always works over
a Unix domain socket. I believe it is not currently possible to operate
dovecot auth over an Internet domain (TCP) socket. Am I correct?
I want to call dovecot's exported authentication from a Java
application. Java doesn't natively know how to talk to a Unix domain
socket, so there are inconveniences. There
2006 Apr 26
8
Search multiple models
Hello,
Lets say you have a few models like Post, Article, Wiki, Comment, And
you want to use ferret to search all of them at once. How would I set up
the latest acts_as_ferret to accomplish this? And what would be fastest
for searches? 1 index for all models, or have an index per model?
Thank you
--
Posted via http://www.ruby-forum.com/.
2004 Aug 09
1
[PATCH] RPA authentication mechanism
...er_append_c(buf, length);
+ } else if (length < 0x100) {
+ buffer_append_c(buf, 0x81);
+ buffer_append_c(buf, length);
+ } else {
+ buffer_append_c(buf, 0x82);
+ buffer_append_c(buf, length >> 8);
+ buffer_append_c(buf, length & 0xff);
+ }
+}
+
+static const char *
+mech_rpa_build_token2(struct rpa_auth_request *auth,
+ const char *realms, size_t *size)
+{
+ unsigned int realms_len = strlen(realms);
+ unsigned int length = sizeof(rpa_oid) + 3 + RPA_SCHALLENGE_LEN +
+ RPA_TIMESTAMP_LEN + 2 + realms_len;
+ buffer_t *buf = buffer_create_dynamic(auth->pool, length + 4, 4096)...
2005 Sep 08
45
/proc/xen/xenbus supports watch?
Hi,
Anybody (Christian?) could please tell me if we can get the support
for registering watch with /proc/xen/xenbus? (..OK, I know that we
will change it this /proc stuff to a device soon)
So far we can only do read/write/rm. I really miss the xen watch feature.
Many thanks,
Hieu
_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xensource.com