From 7d48a4d2be45e0956be641895f41f3220d90fc6e Mon Sep 17 00:00:00 2001 From: Kamil Shakirov Date: Mon, 4 Oct 2010 12:00:44 +0200 Subject: [PATCH] Alias deprecated 'upstream' and 'downstream' socket types to 'pull' and 'push'. --- package.lisp | 2 ++ zeromq.lisp | 6 ++++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/package.lisp b/package.lisp index cb4c9cd..dffba68 100644 --- a/package.lisp +++ b/package.lisp @@ -35,6 +35,8 @@ #:pollin #:pollout #:pub + #:pull + #:push #:queue #:rate #:raw diff --git a/zeromq.lisp b/zeromq.lisp index 72547e1..91334c0 100644 --- a/zeromq.lisp +++ b/zeromq.lisp @@ -103,8 +103,10 @@ (defconstant rep 4) (defconstant xreq 5) (defconstant xrep 6) -(defconstant upstream 7) -(defconstant downstream 8) +(defconstant pull 7) +(defconstant push 8) +(defconstant upstream pull) +(defconstant downstream push) (defconstant hwm 1) (defconstant swap 3) -- 2.11.4.GIT