Re: HTTP++

Andy and I will be doing presentations and demonstations over the next two
weeks at both the IETF and WebCon IV in Boston. We'll be putting out new
documents next week for review at the Web Conference; because the time
allocation for HTTP at the ietf is too tight, we'll just be giving a time 
report and describing the HTTP/1.X enapsulation mode. We'll be doing a 
full presentation at Boston (maybe with Celebrity packet traces again).

Simon 

 -----
(defun modexpt (x y n)  "computes (x^y) mod n"
  (cond ((= y 0) 1) 	((= y 1) (mod x n))
	((evenp y) (mod (expt (modexpt x (/ y 2) n) 2) n))
	(t (mod (* x (modexpt x (1- y) n)) n))))

Received on Thursday, 30 November 1995 15:27:39 UTC