hi,
I think we have enough infra in place and can manage it well enough in order to be able to sign the centos.org domain records; is there any reason why we should not look at doing this ?
Regards
On Sun, 2013-12-08 at 02:37 +0100, Karanbir Singh wrote:
hi,
I think we have enough infra in place and can manage it well enough in order to be able to sign the centos.org domain records; is there any reason why we should not look at doing this ?
With signing I guess you mean DNSSec? I think the most important thing is that the solution is fully automated. DNSSec doesn't give much room for errors. What is your plan for key-rollovers?
Hello, all:
I have a program problem, ( may it not have close releationship with CentOS), it described like this:
I want to using #define / #undef, and want to put them in a single macro, some thing like:
#define DECALRE_TYPE(type) \ { #undef __curr_type; #define _curr_type type; }
as we know, this can not passed with CPP, but I need this logical here.
Generally, the problem comes from
#define ser_field(type, var) \ ser_new_field(tra, #type, #var, offsetof(struct_type, var))
I do not want another additional parameter in this macro like
#define ser_field(type,var,struct_type), and I want a sentence declare "current struct type" and all later work of ser_field will defaultly use this type.
I am not sure whether I can express it clearly, any ideas will be greately appreciated!
Thanks and B.R.